/* Neo-Brutalism Style with Thin Borders - Vertical Sidebar */

/* CSS Variables for consistent theming */
:root {
    /*--color-bg: #FAFAFA;*/
    --color-bg: #e3e3e3;
    --color-text: #000000;
    --color-primary: #FF6B35;
    --color-secondary: #FFE66D;
    --color-accent: #4ECDC4;
    --color-dark: #1A1A1A;
    --color-white: #FFFFFF;
    --color-border: #000000;
    /*--border-width: 2px;*/
    --border-width: 1px;
    --shadow-offset: 4px;
    --sidebar-width: 200px;/*280px;*/
    /*--header-height: 36px;*/
    --header-height: 40px;
    --header-bg: #006bb6;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.2;
    /*text-transform: uppercase;*/
    letter-spacing: -0.5px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

span.h1 {
    font-weight: 900;
    line-height: 1.2;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

p.servizio {
    font-size: 14px;
}

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 24px;
    text-decoration: none;
    z-index: 9999;
    border: var(--border-width) solid var(--color-border);
    font-weight: 700;
    text-transform: uppercase;
    /*transition: top 0.2s;*/
}

.skip-link:focus {
    top: 20px;
}

/* Top Header styles */
.top-header {
    /*background-color: var(--color-white);*/
    background-color: var(--header-bg);
    border-bottom: var(--border-width) solid var(--color-border);
    color: white;
    font-weight: 700;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /*height: var(--header-height);*/
    height: var(--header-height);
}

.header-container {
    /*height: 100%;*/
    padding: 2px 20px;
    align-items: center;
    display: flex;
    /*justify-content: space-between;*/
    /*gap: 1rem;*/
}

.header-container a {
    text-decoration: none;
    color: white;
    display: inline-flex;
    align-items: center;
}

.et-info-logo {
    display: inline-flex;
    align-items: center;
}

.et-info-logo img {
    height: 32px;
}

.et-info-phone {
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
}

.et-info-email {
    margin-left: 20px;
    display: inline-flex;
    align-items: center;
}

.spacer {
    flex: 1 1 auto;
    min-width: 8px;
}

.et-info-account {
    display: inline-flex;
    align-items: center;
}

.et-info-account .nome-operatore {
    margin-right: 10px;
}

.et-info-account img {
    height: 32px;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: inline-block;
    background-color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border: var(--border-width) solid var(--color-border);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--color-border);
    text-decoration: none;
    color: var(--color-white);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    /*transition: all 0.2s;*/
}

.logo a:hover,
.logo a:focus {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--color-border);
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Vertical Sidebar Navigation */
.sidebar-nav {
    position: fixed;
    left: 0;
    top: var(--header-height);
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    /*background-color: var(--color-white);*/
    border-right: var(--border-width) solid var(--color-border);
    overflow-y: auto;
    z-index: 900;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 10px;
    border-bottom: var(--border-width) solid var(--color-border);
    background-color: var(--color-dark);
    color: var(--color-white);
}

.sidebar-header h2 {
    font-size: 1.5rem;
    margin: 0;
    /*letter-spacing: 2px;*/
}

.sidebar-header h2 a {
    text-decoration: none;
    color: white;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.sidebar-menu li {
    position: relative;
}

.sidebar-menu li .sidebar-level-i {
    background-color: #c6c6c6;
}

.sidebar-menu li .sidebar-level-ii::before {
    content: "+";
}

.sidebar-menu li .sidebar-level-ii {
    padding-left: 1em;
    border-bottom: none;
}

.sidebar-menu a,
.sidebar-menu li > span {
    display: flex;
    align-items: center;
    /*gap: 1rem;*/
    gap: 3px;
    /*padding: 1.25rem 2rem;*/
    padding: 0.1rem 0.1em;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
    /*text-transform: uppercase;*/
    font-size: 0.95rem;
    /*letter-spacing: 0.5px;*/
    border-bottom: var(--border-width) solid var(--color-border);
    /*transition: all 0.1s;*/
    /*background-color: var(--color-white);*/
}

.sidebar-menu .menu-icon-text {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    display: flex;
}

.sidebar-menu .menu-icon-text  img {
    width: 24px;
    padding: 8px 2px;
}

.sidebar-menu .menu-text {
    flex-grow: 1;
}

.sidebar-menu a:hover,
.sidebar-menu a:focus {
    background-color: var(--color-secondary);
    /*transform: translateX(2px);*/
    /*padding-left: 2.25rem;*/
}

.sidebar-menu a[aria-current=page] {
    background-color: var(--color-accent);
    /*color: var(--color-white);*/
    /*box-shadow: inset 4px 0 0 var(--color-primary);*/
    border-left: 4px solid var(--color-primary);
}

.sidebar-menu a[aria-current=page] .menu-icon-text {
    /*filter: grayscale(1) brightness(2);*/
}

/* Sidebar Footer */
.sidebar-footer {
    border-top: var(--border-width) solid var(--color-border);
    background-color: var(--color-bg);
    padding: 1.5rem 2rem;
}

.sidebar-links h3 {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    letter-spacing: 1px;
}

.sidebar-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links ul li {
    margin-bottom: 0.5rem;
}

.sidebar-links a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.2s;
}

.sidebar-links a:hover,
.sidebar-links a:focus {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 850;
    opacity: 0;
    /*transition: opacity 0.3s;*/
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

/* Layout Container */
.layout-container {
    display: flex;
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
    /*min-height: 840px;*/
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: var(--color-primary);
    border: var(--border-width) solid var(--color-border);
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--color-border);
    transition: all 0.2s;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    /*transform: translate(2px, 2px);*/
    /*box-shadow: 2px 2px 0 var(--color-border);*/
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    left: 0;
    transition: all 0.3s;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

/* Animated hamburger when active */
.mobile-menu-toggle[aria-expanded="true"] .menu-icon {
    background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Main content */
.main-content {
    flex-grow: 1;
    width: calc(100% - var(--sidebar-width));
    margin-left: var(--sidebar-width);
    /*min-height: calc(100vh - var(--header-height));*/
    padding: 1rem; /*3rem 2rem;*/
    /*max-width: 1400px;*/
    max-width: 1630px;
    overflow-x: hidden;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: var(--border-width) solid var(--color-border);
    /*box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--color-border);*/
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
}

.btn:hover,
.btn:focus {
    /*transform: translate(2px, 2px);*/
    /*box-shadow: 2px 2px 0 var(--color-border);*/
    background-color: var(--color-accent);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-dark);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* Cards/Boxes */
.card {
    background-color: var(--color-white);
    border: var(--border-width) solid var(--color-border);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--color-border);
    padding: 2rem;
    margin-bottom: 2rem;
}


div.pagina-calendario-options {
    /*border: 1px solid green;*/
    display: inline-flex;
    align-items: center;
    font-size: 11pt;
    width: 100%;
    margin-bottom: 5px;
}

div.pagina-calendario-options span {
    /*border: 1px dotted red;*/
    display: flex;
}

div.pagina-calendario-options span a {
    text-decoration: none;
    color: var(--color-text);
}

div.pagina-calendario-options span.param {
    font-weight: 700;
}

div.pagina-calendario-options span.option {
    margin: auto 3px;
    padding: 0px 8px;
}

div.pagina-calendario-options span.option img {
    height: 18px;
    margin-left: 0px;
    margin-right: 5px;
    vertical-align: middle;
}

div.pagina-calendario-options span.spacer {
    flex: 1 1 auto    
}

.calendar_day_column {
    background-color: var(--color-white);
    border: 1px /*var(--border-width)*/ solid var(--color-border);
    /*box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--color-border);*/
    padding: 2px; /*2rem;*/
    margin-bottom: 2rem;
}

.card h2,
.card h3 {
    margin-top: 0;
}

.calendar_day_column h2,
.calendar_day_column h3 {
    margin-top: 0;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: var(--border-width) solid var(--color-border);
    background-color: var(--color-white);
    font-size: 1rem;
    font-family: inherit;
    /*margin-bottom: 1.5rem;*/
    margin-bottom: 0.5rem;
    transition: all 0.2s;
}

input:focus,
textarea:focus,
select:focus {
    /*outline: none;*/
    /*box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--color-border);*/
    /*transform: translate(-2px, -2px);*/
}

label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}


/***************************************** Stili personalizzati */

div.riepilogo_lista_documenti div.lista {
    padding: 20px;
}

div.modifica_campo {
    margin-top: 20px;
    margin-bottom: 20px;
}

div.modifica_campo label {
    margin-top: 10px;
    margin-bottom: 0px;
}

div.modifica_campo select,
div.modifica_campo textarea,
div.modifica_campo input {
    margin-top: 0px;
    margin-bottom: 15px;
}


tbody tr.servizio_row,
tbody tr.operatore_row {
    background-color: var(--color-white);
}

tbody tr.servizio_row td,
tbody tr.operatore_row td {
    padding: 8px;
}

tbody tr.servizio_row td.titolo,
tbody tr.servizio_row td.area,
tbody tr.servizio_row td.durata,
tbody tr.servizio_row td.priorita,
tbody tr.servizio_row td.documenti,
tbody tr.servizio_row td.stato,
tbody tr.servizio_row td.azioni {
}

tbody tr.servizio_row td.durata {
    font-size: 14px;
}

tbody tr.servizio_row td.durata,
tbody tr.servizio_row td.priorita,
tbody tr.servizio_row td.documenti,
tbody tr.servizio_row td.stato,
tbody tr.servizio_row td.azioni {
    text-align: center;
    font-size: 14px;
}

tbody tr.operatore_row td.nome_corto,
tbody tr.operatore_row td.email,
tbody tr.operatore_row td.gruppo,
tbody tr.operatore_row td.priorita,
tbody tr.operatore_row td.colore,
tbody tr.operatore_row td.stato,
tbody tr.operatore_row td.azioni {
    text-align: center;
}


div#popup-appuntamento-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.45);
    z-index: 20000;
    align-items: center;
    justify-content: center;
}


.utente-row {
    background-color:
    var(--color-white);
}

.utente-row.utente-speciale {
    background-color: #eedbdb;
}



/* ========================================================== Footer styles */
footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    border-top: var(--border-width) solid var(--color-border);
    /*position: fixed;*/
    /*margin-left: var(--sidebar-width);*/
    left: 0px;
    bottom: 0px;
    /*width: calc(100% - var(--sidebar-width));*/
    width: 100%;
    overflow-x: hidden;
    z-index: 2000;
}

footer.prenotazione,
footer.nuova-prenotazione,
footer.servizio {
    background-color: white;
    color: black;
    margin-left: 0px;
    width: 100%;
}

footer.prenotazione span.stato {
    font-weight: bold;
}


.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.footer-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
}

.footer-section p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px; /*2rem;*/
    /*border-top: var(--border-width) solid rgba(255, 255, 255, 0.2);*/
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-weight: 600;
    /*text-transform: uppercase;*/
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.app_version {
    font-weight: 400;
    opacity: 0.7;
    letter-spacing: normal;
    /*margin-left: 0.5rem;*/
}

.app_version::before {
    content:"(";
}

.app_version::after {
    content:")";
}

/* Riga utente collassabile in /wolfexec/utenti.
 * cursor:pointer solo se la riga ha effettivamente prenotazioni da mostrare. */
.utente-row.has-prenotazioni {
    cursor: pointer;
}

/* Chevron espandi/comprimi nelle righe utente in /wolfexec/utenti.
 * La rotazione di 90° quando aperto è gestita inline dal JS. */
.utente-toggle {
    display: inline-block;
    color: var(--color-primary);
    font-size: 1.1rem;
    transition: transform 0.15s;
    margin-left: 10px;
}

address {
    font-style: normal;
}

/* Alert/Notification boxes */
.alert {
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    border: var(--border-width) solid var(--color-border);
    box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--color-border);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.alert.success {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.alert.error {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.alert.warning {
    background-color: var(--color-secondary);
    color: var(--color-dark);
}

/* Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 2rem;
    border: var(--border-width) solid var(--color-border);
}

thead {
    background-color: var(--color-dark);
    color: var(--color-white);
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    border-bottom: var(--border-width) solid var(--color-border);
    border-right: var(--border-width) solid var(--color-border);
}

th:last-child {
    border-right: none;
}

td {
    padding: 1rem;
    border-bottom: var(--border-width) solid var(--color-border);
    border-right: var(--border-width) solid var(--color-border);
}

td:last-child {
    /*border-right: none;*/
}

tbody tr {
    /*background-color: var(--color-white);
    transition: background-color 0.2s;*/
}

tbody tr:nth-child(even) {
    /*background-color: var(--color-bg);*/
}

tbody tr:hover {
    /*background-color: var(--color-secondary);*/
}

tbody tr:last-child td {
    /*border-bottom: none;*/
}

/* Focus styles for accessibility */
*:focus {
    /*outline: 3px solid var(--color-primary);*/
    /*outline-offset: 3px;*/
}

a:focus,
button:focus {
    /*outline: 3px solid var(--color-primary);*/
    /*outline-offset: 2px;*/
}

/* Utility classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Grid system */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-no-gap {
    display: grid;
    gap: 0rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-calendar-week {
    grid-template-columns: repeat(6, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Links */
a {
    /*color: var(--color-primary);*/
    /*font-weight: 600;*/
}

a:hover {
    /*color: var(--color-accent);*/
}




/******************************************************************************/

div.slot_giorno_wrap {
    /*background-color: rgb(173, 233, 173);*/
    font-size: 80%;
}

div.slot_giorno_wrap div.slot {
    /*border: 1px solid #FF6B35;*/
}

div.slot_giorno_wrap table {
    margin: 0px;
    border: none;
}

div.slot_giorno_wrap tr.slot {
    height: 50px;
    /*overflow: hidden;*/
}

div.slot_giorno_wrap tr.pausa {
    height: 0.5rem;
    background-color: grey;
}

div.slot_giorno_wrap tr.slot td {
    border-right: none;
    border-bottom: 1px solid gray;
}

div.slot_giorno_wrap tr.slot td.slot_ora {
    font-size: 0.8rem;
    text-align: left;
    font-weight: 400;
    padding: 2px;
    /*border: 1px solid purple;*/
    width: 2rem;
    vertical-align: top;
}

div.slot_giorno_wrap tr.slot td.pausa {
    border-right: none;
    border-top: 1px solid grey;
    font-size: 2px;
}

div.slot_giorno_wrap tr.slot td.slot_contenuto {
    text-align: left;
    padding: 2px;
    /*border: 1px solid cyan;*/
}

/* card appuntamento */
div.appuntamento_card {
    /*background-color: #d3c893;*/
    padding: 2px;
    height: 48px;
}

div.appuntamento_card p.utente {
    font-weight: 600;
    margin: 0px;
    font-size: 0.8rem;
    line-height: 1.1;
}

div.appuntamento_card p.servizio {
    margin: 0px;
    font-size: 0.8rem;
    line-height: 1.1;
}

div.appuntamento_card p.note {
    font-style: italic;
    margin: 0px;
    font-size: 0.7rem;
    line-height: 1.1;
}





/* Responsive design */
@media (max-width: 768px) {
    :root {
        --header-height: 110px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Header impilato verticalmente su mobile */
    header.top-header {
        height: 110px;
        padding: 0.5rem 0;
    }

    .header-container {
        padding: 0.25rem 1rem;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .header-container .et-info-email,
    .header-container .spacer {
        display: none;
    }

    .header-container div a img {
        margin: 1px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        padding: 0;
        flex-shrink: 0;
        position: absolute;
        left: 0;
        top: 74px;
        box-shadow: none;
        z-index: 1000;
    }

    /* Sidebar: drawer slide-in da sinistra */
    .sidebar-nav {
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
        width: 100%;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 950;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        border: none;
        box-shadow: 4px 0 8px rgba(0, 0, 0, 0.1);
    }

    .sidebar-nav.active {
        transform: translateX(0);
    }

    .sidebar-overlay {
        top: var(--header-height);
        transition: opacity 0.3s;
    }

    /* Adjust main content for mobile */
    .main-content {
        width: 100%;
        margin-left: 0;
        padding: 2rem 1rem;
    }

    /* Adjust footer for mobile */
    footer {
        margin-left: 0;
        width: 100%;
    }

    .footer-container {
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .logo a {
        font-size: 1.25rem;
        padding: 0.5rem 1rem;
    }

    .card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --shadow-offset: 3px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Print styles */
@media print {
    header,
    footer,
    .mobile-menu-toggle {
        display: none;
    }
    
    main {
        max-width: 100%;
    }
    
    * {
        box-shadow: none !important;
    }
}
