﻿.headerSlim {
    height: 48px;
    background: #630817;
    padding: 12px 24px 12px 24px;
    display: flex;
    justify-content: flex-end;
}

.headerSlimItems {
    display: flex;
    gap: 15px;
    align-items: center;
    color: white;
}

.headerItems:hover {
    color: #f5f5f5;
}

.headerSeparator {
    width: 2px;
    height: 20px;
    background-color: white;
    display: inline-block;
}

.headerIconText {
    display: flex;
    align-items: center;
    gap: 10px; /* Spazio tra l'icona e il testo */
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    background-color: white;
    border-radius: 50%;
}

.headerCustomIcon {
    font-size: 16px;
    color: #630817;
    margin: 0; /* Assicurati che non ci sia margine */
    padding: 0; /* Assicurati che non ci sia padding */
}

.headerSlimButton {
    cursor: pointer;
    background-color: #630817;
    padding: 0px;
    color: white;
    border-radius: 5px;
    text-align: center;
    border: none; /* Rimuove i bordi del bottone */
    display: flex;
    font: inherit; /* Eredita il font dal contenitore */
}

    .headerSlimButton:hover {
        color: #f5f5f5;
    }

.headerBig {
    height: 174px;
    background: #A50D26;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px; /* Spaziatura laterale */
}

.logoContainer img {
    max-width: 250px; /* Larghezza massima per il logo */
    height: auto; /* Mantiene le proporzioni */
}

.textContainer {
    color: white;
    font-size: 1.2rem;
    text-align: right;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .removeWhenSmall {
        display: none !important;
    }

    .headerBig {
        height: 80px !important;
    }

    .logoContainer img {
        max-width: 100px !important;
    }
}

.initials-circle {
    width: 30px; /* Imposta la dimensione del cerchio */
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    background-color: white;
    color: black;
    border-radius: 50%; /* Rende l'elemento circolare */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px; /* Regola la dimensione del testo */
}
