/* ============================================
   STILI UNIFORMI PER TUTTE LE APPLICAZIONI
   Font Lobster per titoli principali
   ============================================ */

/* Importa font Lobster */
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

/* Titolo principale - UNIFORME PER TUTTE LE APP */
#page-title {
    font-family: 'Lobster', cursive !important;
    font-size: 2.5em !important;
    text-align: center !important;
    margin: 0 0 5px 0 !important;
    padding: 0 !important;
    font-weight: normal !important;
    text-shadow: none !important;
    border: none !important;
    border-bottom: none !important;
}

/* Sottotitolo - UNIFORME PER TUTTE LE APP */
.page-subtitle {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 1.2em !important;
    text-align: center !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    font-weight: 500 !important;
    opacity: 0.7 !important;
    text-shadow: none !important;
    border: none !important;
}

/* Button Container - UNIFORME */
.button-container {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.button-container button {
    background-color: #2d2d2d;
    color: #f8f8f8;
    border: 1px solid #444444;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.button-container button:hover {
    background-color: #3a3a3a;
    transform: translateY(-2px);
}

.button-container button.active {
    background-color: #ff8c00 !important;
    color: white !important;
}