.custom-mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
}

.custom-mobile-menu-sidebar {
    position: fixed;
    top: 0; right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.custom-mobile-menu-sidebar.opened {
    right: 0;
}

.custom-mobile-menu-overlay.active {
    display: block;
}

.custom-mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    text-decoration: none;
    color: #000;
}

.custom-mobile-menu-items {
    list-style: none; /* li noktalarını kaldır */
    padding: 0;
    margin: 0;
}

.custom-mobile-menu-items li {
    margin-bottom: 15px; /* her menü öğesi arasında boşluk */
}

.custom-mobile-menu-items li a {
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: #333;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.custom-mobile-menu-items li a:hover {
    background-color: #f0f0f0;
    color: #000;
}
