/* Estilos para el Header Personalizado */
.sc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    font-family: sans-serif;
}

.sc-header-logo img {
    height: 40px !important;
    width: 40px !important;
}

.sc-header-nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sc-header-nav a:hover {
    color: #007cba;
}

.sc-header-actions .sc-btn, .sc-header-user .sc-btn {
    margin-left: 10px;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sc-header-actions .sc-btn-primary {
    background-color: #007cba;
    color: white;
    border: 1px solid #007cba;
}

.sc-header-actions .sc-btn-secondary {
    background-color: transparent;
    color: #007cba;
    border: 1px solid #007cba;
}

.sc-header-user {
    display: flex;
    align-items: center;
    position: relative;
}

.sc-header-user-info {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.sc-header-user-info span {
    margin-right: 10px;
    font-weight: 500;
}

.sc-header-user-info img {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.sc-user-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 160px;
    z-index: 1000;
}

.sc-user-dropdown.active {
    display: block;
}

.sc-user-dropdown a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.sc-user-dropdown a:hover {
    background-color: #f5f5f5;
}

.sc-notification-icon {
    font-size: 20px;
    color: #555;
    margin-right: 20px;
    cursor: pointer;
}
