.TCEheader-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2C417A;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    height: 60px;
}

.TCEheader-logo {
    height: 40px;
}

.TCEheader-logo-container {
    display: flex;
    align-items: center;
}

.TCEheader-icons-container {
    display: flex;
    align-items: center;
}

.TCEheader-icon {
    height: 24px;
    margin-right: 10px;
}

.TCEheader-icon:last-child {
    margin-right: 0;
}

@media (max-width: 768px) {
    .TCEheader-container {
        height: 50px;
    }

    .TCEheader-logo {
        height: 30px;
    }

    .TCEheader-icon {
        height: 20px;
    }
}

.TCEheader-button {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.TCEheader-button:hover {
    opacity: 0.8;
}

.TCEheader-button:focus {
    outline: 2px solid #fff;
    border-radius: 4px;
}

/* Tema escuro */
[data-theme="dark"] {
    background-color: #1a1a1a;
    color: #ffffff;
}

[data-theme="dark"] .TCEheader-container {
    background-color: #000033;
}
