/* Sol Sidebar Menü CSS */

.left-sidebar-menu {
    position: fixed;
    left: 0;
    top: 100px; /* Üst menü yüksekliği + biraz aşağı */
    width: 280px;
    height: calc(100vh - 100px);
    background-color: transparent;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 20px 20px 20px;
}

.sidebar-menu-container {
    padding: 0;
    height: fit-content;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sidebar-menu-header {
    background-color: transparent;
    color: #333;
    padding: 20px;
    border-radius: 8px 8px 0 0;
}

.sidebar-menu-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Bebas Neue", cursive;
}

.sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f8f9fa;
}

.sidebar-menu-list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-menu-list li:last-child {
    border-bottom: none;
}

.sidebar-menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #0e0b0b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    margin: 2px 5px;
    border-radius: 6px;
    background-color: transparent;
}

.sidebar-menu-item:hover {
    background-color: #e9ecef;
    color: #000000;
    border-radius: 6px;
}

.sidebar-menu-item.active {
    background-color: transparent;
    color: #000000;
    /*font-weight: bold;*/
    border-radius: 6px;
    margin: 2px 5px;
}

.sidebar-menu-item.active:hover {
    background-color: #e9ecef;
    color: #000000;
}

.sidebar-menu-item .menu-arrow {
    margin-right: 10px;
    font-size: 18px;
}

/* Yönetim sayfası için uyumluluk - aynı class'ları destekle */
.sidebar-menu {
    background-color: #f8f9fa;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    height: fit-content;
    position: sticky;
    top: 20px;
    flex-shrink: 0;
}

.sidebar-menu .sidebar-header {
    background-color: transparent;
    padding: 20px;
    color: #333;
    border-radius: 8px 8px 0 0;
}

.sidebar-menu .sidebar-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: "Bebas Neue", cursive;
}

.sidebar-menu .sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f8f9fa;
}

.sidebar-menu .sidebar-menu-list li {
    border-bottom: 1px solid #e0e0e0;
}

.sidebar-menu .sidebar-menu-list li:last-child {
    border-bottom: none;
}

.sidebar-menu .sidebar-menu-list a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    margin: 2px 5px;
    border-radius: 6px;
    background-color: transparent;
}

.sidebar-menu .sidebar-menu-list a:hover {
    background-color: #e9ecef;
    color: #224a98;
    border-radius: 6px;
}

.sidebar-menu .sidebar-menu-list a.active {
    background-color: transparent;
    color: #224a98;
    font-weight: bold;
    border-radius: 6px;
    margin: 2px 5px;
}

.sidebar-menu .menu-arrow {
    margin-right: 10px;
    font-size: 18px;
}

/* İçerik alanını sidebar için ayarla */
.page-detail.with-sidebar,
.photo-gallery-page.with-sidebar,
.video-gallery-page.with-sidebar,
.yonetim-page.with-sidebar {
    margin-left: 280px;
    width: calc(100% - 280px);
}

.page-detail.with-sidebar .container,
.photo-gallery-page.with-sidebar .container,
.video-gallery-page.with-sidebar .container,
.yonetim-page.with-sidebar .container-fluid {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
}

/* Responsive stiller mobile_responsive.css dosyasında */

/* Scrollbar Styling */
.left-sidebar-menu::-webkit-scrollbar {
    width: 6px;
}

.left-sidebar-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.left-sidebar-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.left-sidebar-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

