/* Stile personalizzato per emulare le linee guida AGID */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');

body {
    font-family: 'Titillium Web', sans-serif;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.header-agid {
    background-color: #0066cc;
    color: white;
    padding: 1rem 0;
    border-bottom: 3px solid #004C99;
}

.header-agid .logo-text {
    font-weight: 700;
    font-size: 1.5rem;
}

.header-agid .sub-text {
    font-size: 1rem;
    opacity: 0.9;
}

.main-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.page-title, .scenario-title {
    color: #004C99;
    font-weight: 700;
}

.footer-agid {
    background-color: #333;
    color: #f5f5f5;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    margin-top: auto;
}
.footer-agid a {
    color: #fff;
    text-decoration: underline;
}
.footer-agid .disclaimer {
    color: #ccc;
    font-size: 0.8rem;
    margin-top: 1.5rem;
}

/* Stili Homepage */
.category-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
}

/* Stili Pagine Elenco Scenari */
.scenario-item {
    border-left: 5px solid #0066cc;
    margin-bottom: 1rem;
}
.scenario-item:hover {
    border-left-color: #004C99;
    background-color: #f8f9fa;
}

.scenario-item-disabled {
    border-left-color: #ccc;
    background-color: #f8f9fa;
}

/* Stili Pagine Scenario Interattivo */
.btn-choice {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1rem; /* Aggiunto spazio tra i bottoni */
    text-align: left; /* Allinea il testo a sinistra */
    white-space: normal; /* Permette al testo di andare a capo */
    line-height: 1.5;
}

.feedback-alert {
    padding: 1.5rem;
    font-size: 1.1rem;
    margin-top: 2rem;
    border-width: 3px;
}