.webido-header {
    background: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    width: 100% !important;
}

.webido-header nav {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 1rem 2rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.webido-header nav ul {
    display: flex !important;
    gap: 2rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center !important;
}

.webido-header nav a {
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: color 0.3s ease !important;
}

.webido-header nav a:hover {
    color: #007bff !important;
}

.webido-header .logo {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

.webido-header .logo a {
    color: #007bff !important;
}

/* Dropdown Styles */
.webido-header .dropdown {
    position: relative !important;
    display: inline-block !important;
}

.webido-header .dropdown-content {
    display: none !important;
    position: absolute !important;
    background-color: #fff !important;
    min-width: 200px !important;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
    border-radius: 8px !important;
    padding: 0.5rem 0 !important;
    z-index: 1 !important;
    right: 0 !important;
}

.webido-header .dropdown:hover .dropdown-content {
    display: block !important;
}

.webido-header .dropdown-content a {
    color: #333 !important;
    padding: 12px 16px !important;
    text-decoration: none !important;
    display: block !important;
    transition: background-color 0.3s !important;
}

.webido-header .dropdown-content a:hover {
    background-color: #f8f9fa !important;
}

/* Mobile Menu Styles */
.webido-header .mobile-menu-btn {
    display: none !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 1rem !important;
    color: #333 !important;
    width: 50px !important;
    height: 50px !important;
    align-items: center !important;
    justify-content: center !important;
}

.webido-header .mobile-menu-btn i {
    font-size: 24px !important;
}

@media (max-width: 768px) {
    .webido-header nav {
        flex-direction: row !important;
        padding: 0.5rem 1rem !important;
        position: relative !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .webido-header .mobile-menu-btn {
        display: flex !important;
        z-index: 1001 !important;
        border: 2px solid #333 !important;
        border-radius: 4px !important;
        margin-left: auto !important;
        cursor: pointer !important;
    }

    .webido-header nav ul {
        display: none !important;
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        right: 0 !important;
        background: white !important;
        padding: 1rem 0 !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
        text-align: left !important;
        flex-direction: column !important;
        gap: 0 !important;
        z-index: 1000 !important;
        margin: 0 !important;
    }

    .webido-header nav ul.show {
        display: flex !important;
    }

    .webido-header nav ul li {
        padding: 0.5rem 1rem !important;
        width: 100% !important;
        display: block !important;
    }

    .webido-header nav a {
        font-size: 1rem !important;
        padding: 0.5rem 0 !important;
        display: block !important;
        width: 100% !important;
    }

    .webido-header nav a i {
        width: 1.5rem !important;
        margin-right: 0.5rem !important;
        text-align: center !important;
    }

    .webido-header .logo {
        font-size: 1.2rem !important;
    }

    .webido-header .dropdown {
        display: none !important;
    }

    .webido-header .dropdown-content {
        position: static !important;
        box-shadow: none !important;
        padding-left: 1rem !important;
        right: auto !important;
    }
} 