/* Estilos gerais do container do header */
.header-container {
    padding: 20px 20px;
    box-shadow: inset 0 -1px 0 #ddd;
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 9998;
    height: 100px;
    margin-top: -1px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-left-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-logo {
    height: 45px;
    width: auto;
}

.header-right-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Botão do menu hamburguer */
.menu-toggle {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
}

/* Estilos para o título */
.header-title {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
}

.header-title a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
}

.header-title a:hover {
    text-decoration: underline;
}

/* Estilos do Breadcrumb */
.breadcrumb-link {
    color: #0076D6;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

/* Container que envolve o input e as informações do usuário */
.input-user-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-container {
        padding: 12px 16px;
        height: 70px;
        margin-top: -1px;
    }

    .header-left-content {
        gap: 12px;
    }

    .menu-toggle {
        display: flex;
        padding: 8px;
        margin-right: -8px;
    }

    .header-content {
        gap: 8px;
    }

    .header-logo {
        height: 32px;
    }

    .input-user-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    #input {
        width: 100%;
    }

    .user-icon-container {
        justify-content: flex-start;
    }

    .header-title {
        margin-left: 40px;
    }

    .breadcrumb-wrapper {
        margin-bottom: 0;
    }
}

.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.header-logo-link:hover {
    opacity: 0.8;
}
