html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}
/* Stile per le Card e Form */
.ambra-card {
    background-color: var(--card-bg);
    border: 1px solid #222;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.form-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control, .form-select {
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
}

    .form-control:focus {
        background-color: #1a1a1a;
        border-color: var(--primary-orange);
        color: white;
        box-shadow: 0 0 0 0.25rem rgba(255, 77, 0, 0.15);
    }

.section-title {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-orange);
    padding-left: 15px;
}

.text-detail-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.text-detail-value {
    font-weight: 500;
    margin-bottom: 15px;
}