.mobil-menu-widget {
    display: inline-block;
    z-index: 999999;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999998;
}

.menu-overlay.active {
    display: block;
}

.menu-toggle {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: #34495e;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -70%;
    width: 70% !important;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 999999;
}

.mobile-nav.active {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f8f9fa;
    border: none;
    color: #2c3e50;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.close-menu:hover {
    color: #e74c3c;
    transform: rotate(90deg);
    background: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.menu-items {
    list-style: none;
    padding: 60px 0 0 0;
    margin: 0;
}

.menu-items li {
    border-bottom: 1px solid #eee;
}

.menu-items li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s ease;
}

.menu-items li a i:first-child {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.menu-items li a .submenu-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.menu-items li a:hover {
    background: #f5f5f5;
}

.submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f9f9f9;
}

.submenu.active {
    display: block;
}

.submenu.active + a .submenu-icon {
    transform: rotate(180deg);
}

.submenu li a {
    padding-left: 50px;
    font-size: 14px;
}

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.submenu.active {
    animation: fadeIn 0.3s ease;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .mobile-nav {
        width: 100%;
        left: -100%;
    }
} 

