﻿/*container*/
.layout-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.sfondo-login {
    background-color: #136ba4;
}

/*header*/
.layout-header {
    background-color: #f4f4f4;
    padding: 10px;
    border-bottom: 1px solid #dee2e6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.collapse-button {
    background-color: #f4f4f4 !important;
    border: none !important;
    border-radius: 0 !important;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
}
    .collapse-button:hover {
        border-radius: 50% !important;
    }

.collapse-button-icon {
    background-color: var(--bs-body-color) !important;
    background-image: none;
    height: 1.5rem;
    width: 1.5rem;
    display: block;
    -webkit-mask-image: url(../images/icons/menu.svg);
    mask-image: url(../images/icons/menu.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.logo-sgs {
    align-items: center;
    cursor: pointer;
}

.logo-sgs-icon {
    height: 40px;
}

.sgs-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bs-primary);
}

.azienda-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #7b8a8b;
}

.operatore-button {
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    align-items: center;
    justify-content: center;
}

/*footer*/
.layout-footer {
    background-color: #f4f4f4;
    padding: 5px;
    border-top: 1px solid #dee2e6;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
    .responsive-hide-header {
        display: none;
    }
}