.astronaut-photos  {
    overflow: hidden !important;
    border-radius: 50% !important;
    width: 150px !important;
    height: 150px !important;
    object-fit: cover !important;
    object-position: center !important; /* Resmi merkeze hizalar */
    border: 1px solid #cccccc !important;
}

/* Header düzenlemeleri için güncellenmiş stiller */
    .page-header .navbar {
        padding: 0 15px;
        height: 60px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-title {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .mobile-logo .logo {
        height: 30px;
    }

    .desktop-title h5 {
        margin: 0;
        color: var(--white-text);
        font-size: 1.25rem;
    }

    .header-right {
        display: flex;
        align-items: center;
        justify-content: center !important;
        flex: 1 !important;
        padding: 0 20px !important;
    }

    /* Mobil menü için güncellenmiş stiller */
    .mobile-menu {
        display: none;
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        right: 0 !important;
        background: var(--card-bg) !important;
        z-index: 999 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .mobile-menu .scroll-menu {
        display: flex !important;
        overflow-x: auto !important;
        padding: 10px 15px !important;
        gap: 20px !important;
        height: 40px !important;
        align-items: center !important;
    }

    .mobile-menu .menu-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        min-width: 65px !important;
        text-decoration: none !important;
        color: var(--white-text) !important;
        opacity: 0.7 !important;
        transition: all 0.3s !important;
    }

    .mobile-menu .menu-item.active {
        opacity: 1 !important;
    }

    .mobile-menu .menu-item i {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .mobile-menu .menu-item span {
        font-size: 11px;
        text-align: center;
        white-space: nowrap;
    }

    /* Tüm responsive düzenlemeler için tek media query bloğu */
    @media (min-width: 1200px) {

        /* xl ve üstü - Masaüstü */
        .page-sidebar {
            display: block !important;
        }

        .mobile-menu {
            display: none !important;
        }

        .mobile-logo {
            display: none !important;
        }

        .desktop-title {
            display: block !important;
        }
    }

    @media (min-width: 992px) and (max-width: 1199.98px) {

        /* lg - Büyük tablet */
        .page-sidebar {
            display: none !important;
        }

        .mobile-menu {
            display: block !important;
        }

        .page-content {
            margin-left: 0 !important;
            padding-top: 110px !important;
        }

        .mobile-logo {
            display: block !important;
        }

        .desktop-title {
            display: none !important;
        }

        .main-wrapper {
            padding: 0 15px;
        }

        .header-search .form-control {
            width: 150px;
        }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {

        /* md - Tablet */
        .page-sidebar {
            display: none !important;
        }

        .mobile-menu {
            display: block !important;
        }

        .page-content {
            margin-left: 0 !important;
            padding-top: 110px !important;
        }

        .mobile-logo {
            display: block !important;
        }

        .desktop-title {
            display: none !important;
        }

        .main-wrapper {
            padding: 0 15px;
        }

        .header-search .form-control {
            width: 150px;
        }
    }

    @media (max-width: 767.98px) {

        /* sm ve xs - Mobil */
        .page-sidebar {
            display: none !important;
        }

        .mobile-menu {
            display: block !important;
        }

        .page-content {
            margin-left: 0 !important;
            padding-top: 110px !important;
        }

        .mobile-logo {
            display: block !important;
        }

        .desktop-title {
            display: none !important;
        }

        .main-wrapper {
            padding: 0 15px;
        }

        .header-search .form-control {
            width: 150px;
        }
    }

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

    .profile-dropdown {
        padding: 0 !important;
    }

    .profile-drop-menu {
        min-width: 200px;
        /*padding: 8px;*/
        /*margin-top: 8px;*/
    }

    .profile-drop-menu .dropdown-item {
        /*padding: 8px 15px;*/
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .profile-drop-menu .dropdown-item i {
        font-size: 18px;
    }

    /* Logo ve başlık için responsive stiller */
    .mobile-only {
        display: none !important;
        /* Masaüstünde logo gizli */
    }

    .desktop-only {
        display: block !important;
        /* Masaüstünde başlık görünür */
        margin: 0;
        color: var(--white-text);
        font-size: 1.25rem;
    }

    /* Mobil görünüm için medya sorgusu */
    @media (max-width: 768px) {
        .mobile-only {
            display: block !important;
            /* Mobilde logo görünür */
        }

        .desktop-only {
            display: none !important;
            /* Mobilde başlık gizli */
        }
    }

    /* Mevcut stilleri override et */
    @media (min-width: 768px) {
        .page-sidebar {
            display: block !important;
            width: 260px !important;
            z-index: 1000;
        }

        .page-content {
            margin-left: 260px !important;
        }
    }

    /* Sadece mobil için sidebar'ı gizle */
    @media (max-width: 767.98px) {
        .page-sidebar {
            display: none !important;
        }

        .page-content {
            margin-left: 0 !important;
        }
    }

    /* Önceki media query'leri etkisiz hale getir */
    @media (max-width: 991.98px) {
        .page-sidebar {
            display: block !important;
        }
    }

    @media (max-width: 1199.98px) {
        .page-sidebar {
            display: block !important;
        }

        .header-search {
            display: none !important;
        }
    }

    /* Header search styles */
    .header-search {
        flex: 0 1 400px !important;
        margin: 0 auto !important;
        position: relative !important;
    }

    .header-search form {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        position: relative !important;
    }

    .header-search .form-control {
        width: 100% !important;
        padding-left: 40px !important;
        /* Sol taraftaki ikon için boşluk */
        background: var(--input-border) !important;
        /*border: 1px solid rgba(255, 255, 255, 0.1) !important;*/
        color: var(--white-text) !important;
    }

    /* Sol taraftaki arama ikonu */
    .header-search .search-icon {
        position: absolute !important;
        left: 12px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: var(--white-text) !important;
        opacity: 0.7 !important;
        z-index: 1 !important;
    }

    /* Sağ taraftaki çarpı ikonu */
    .header-search .close-search {
        position: absolute !important;
        right: 12px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: var(--white-text) !important;
        opacity: 0.7 !important;
    }

    .header-search .search-icon:hover,
    .header-search .close-search:hover {

    }

    /* Profil ikonunu sağa yasla */
    .user-profile {
        margin-left: auto !important;
    }

    /* Write your custom CSS here */

    /* Sidebar responsive davranışını düzelt */
    body .page-container .page-sidebar,
    .page-container .page-sidebar,
    .page-sidebar {
        display: block !important;
        width: 245px !important;
        position: fixed !important;
        height: 100% !important;
        top: 0;
        left: 0;
        z-index: 1000;
        transition: none !important;
        transform: none !important;
    }

    body .page-container .page-content,
    .page-container .page-content,
    .page-content {
        margin-left: 260px !important;
        transition: none !important;
    }

    /* Sadece gerçek mobil cihazlarda sidebar'ı gizle */
    @media (max-width: 1199.98px) {

        body .page-container .page-sidebar,
        .page-container .page-sidebar,
        .page-sidebar {
            display: none !important;
        }

        body .page-container .page-content,
        .page-container .page-content,
        .page-content {
            margin-left: 0 !important;
        }

        .user-profile {
            width: 20% !important;
        }

        .header-title { width: 53%; }
    }

    /* Tüm diğer breakpoint'lerde sidebar'ı göster */
    @media (min-width: 1200px) {

        body .page-container .page-sidebar,
        .page-container .page-sidebar,
        .page-sidebar {
            display: block !important;
            transform: none !important;
            left: 0 !important;
        }
    }

    /* Diğer breakpoint'lerdeki sidebar gizleme davranışını engelle */
    @media (max-width: 1199.98px) {
        .page-sidebar {
            display: block !important;
        }
    }

    @media (max-width: 1199.98px) {
        .page-sidebar {
            display: block !important;
        }
    }

    /* Header düzenlemeleri */
    .page-header .navbar {
        padding: 0 25px !important;
        /* Genel padding'i artır */
    }

    .header-title {
        margin-left: 15px !important;
        /* Tüm header title için margin */
    }

    /* Dashboard başlığının konumunu düzelt */
    @media (min-width: 768px) {
        .page-header {
            margin-left: 260px !important;
            width: calc(100% - 260px) !important;
        }

        .page-header .navbar {
            width: 100% !important;
        }

        .header-title {
            flex: 0 0 auto !important;
            margin-left: 25px !important;
            /* Masaüstünde daha fazla margin */
        }

        .desktop-title {
            display: block !important;
        }

        .desktop-title h5 {
            margin: 0;
            padding: 0;
            font-size: 1.25rem;
            white-space: nowrap;
        }

        .header-right {
            margin-left: auto !important;
        }
    }

    /* Sadece mobilde header düzenlemesi */
    @media (max-width: 767.98px) {
        .page-header {
            margin-left: 0 !important;
            width: 100% !important;
        }

        .page-header .navbar {
            padding: 0 20px !important;
        }

        .mobile-logo {
            margin-left: 15px !important;
            /* Mobilde logo için margin */
        }

        .desktop-title {
            display: none !important;
        }
    }

    /* Theme switcher styles */
    .theme-switch-wrapper {
        position: fixed;
        /* bottom: 20px; */
        left: 60px;
        display: flex;
        align-items: center;
        margin-top: 50px;
    }

    .theme-switch {
        display: inline-block;
        height: 22px;
        position: relative;
        width: 45px;
    }

    .theme-switch input {
        display: none;
    }

    .slider {
        background-color: #333;
        bottom: 0;
        cursor: pointer;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        transition: .4s;
        border-radius: 34px;
    }

    .slider:before {
        background-color: #fff;
        bottom: 4px;
        content: "";
        height: 13px;
        left: 4px;
        position: absolute;
        transition: .4s;
        width: 13px;
        border-radius: 50%;
    }

    .slider .fa-sun {
        position: absolute;
        left: 8px;
        top: 8px;
        color: #fff;
        font-size: 16px;
    }

    .slider .fa-moon {
        position: absolute;
        right: 8px;
        top: 8px;
        color: #fff;
        font-size: 16px;
    }

    input:checked+.slider {
        background-color: #66bb6a;
    }

    input:checked+.slider:before {
        transform: translateX(26px);
    }

    /* Sidebar içeriğini ortala */
    .page-sidebar {
        display: flex !important;
        flex-direction: column !important;
    }

    .page-sidebar .logo {
        margin: 20px 0 !important;
    }

    .page-sidebar .accordion-menu {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        /*justify-content: center !important;*/
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Mobilde ortalamayı kaldır */
    @media (max-width: 767.98px) {
        .page-sidebar .accordion-menu {
            justify-content: flex-start !important;
        }
    }

    /* Sidebar collapsed durumunda da ortalamayı koru */
    .page-sidebar-collapsed .page-sidebar .accordion-menu {
        justify-content: center !important;
    }

    /* Sidebar menü öğeleri için yeni stiller */
    .page-sidebar .accordion-menu li a {
        padding: 12px 20px !important;
        transition: background-color 0.3s ease !important;
        /* Sadece arkaplan rengi için geçiş efekti */
        position: relative !important;
        color: rgba(255, 255, 255, 0.4) !important;
        /* Varsayılan renk */
        font-weight: 500;
    }

    /* İkonları gizle */
    .page-sidebar .accordion-menu li a i {
        display: none !important;
    }

    /* Dropdown ikonunu koru ama konumunu ayarla */
    .page-sidebar .accordion-menu li a .dropdown-icon {
        display: block !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    /* Alt menü öğeleri için padding ayarla */
    .page-sidebar .accordion-menu li ul li a {
        padding-left: 30px !important;
        color: rgba(255, 255, 255, 0.7) !important;
    }

    /* Hover efektini güncelle - sadece arkaplan değişsin */
    .page-sidebar .accordion-menu li a:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        transform: none !important;
        /* Yana kayma efektini kaldır */
    }

    /* Aktif menü öğesi için stil */
    .page-sidebar .accordion-menu li.active-page>a,
    .page-sidebar .accordion-menu li a.active {
        background: rgba(255, 255, 255, 0.1) !important;
        color: rgba(255, 255, 255, 1) !important;
        /* Aktif menü için beyaz renk */
    }

    /* Alt menü aktif öğesi için stil */
    .page-sidebar .accordion-menu li ul li a.active {
        background: rgba(255, 255, 255, 0.1) !important;
        color: rgba(255, 255, 255, 1) !important;
    }

    /* Yeşil rengi kaldır */
    .page-sidebar .accordion-menu li.active-page>a,
    .page-sidebar .accordion-menu li a.active,
    .page-sidebar .accordion-menu li ul li a.active {
        color: rgba(255, 255, 255, 1) !important;
        /* Beyaz renk */
        font-weight: 700 !important;
    }

    /* Logo styles for theme switching */
    .logo-light, .logo-dark {
        height: 100px !important;
        transition: opacity 0.3s ease !important;
    }

    /* Dark theme (default) */
    :root {
        /* Diğer dark theme değişkenleri */
    }

    :root .logo-light {
        display: block !important;
        opacity: 1 !important;
    }

    :root .logo-dark {
        display: none !important;
        opacity: 0 !important;
    }

    /* Light theme */
    :root[data-theme="light"] .logo-light {
        display: none !important;
        opacity: 0 !important;
    }

    :root[data-theme="light"] .logo-dark {
        display: block !important;
        opacity: 1 !important;
    }

    /* Logo container styles */
    .page-sidebar .logo {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 20px !important;
    }

    /* Logo ve başlık görünürlük ayarları */
    .mobile-logo {
        display: none !important;
    }

    .desktop-title {
        display: none !important;
    }

    /* Responsive ayarlar */
    @media (max-width: 767.98px) {

        /* Mobil görünüm */
        .mobile-logo {
            display: flex !important;
            align-items: center !important;
        }

        .desktop-title {
            display: none !important;
        }

        .page-sidebar .logo {
            display: none !important;
        }
    }

    @media (min-width: 768px) {

        /* Tablet ve masaüstü görünüm */
        .mobile-logo {
            display: none !important;
        }

        .desktop-title {
            display: block !important;
        }

        .page-sidebar .logo {
            display: flex !important;
        }
    }

    /* Header ve mobil menü için sabit pozisyonlama ve arka plan */
    .page-header {
        position: fixed !important;
        top: 0 !important;
        left: -15px !important;
        right: 0 !important;
        z-index: 1000 !important;
        background-color: var(--card-bg) !important;
        /* Koyu arka plan */
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1) !important;
    }

    /* Mobil menü için güncellenmiş stiller */
    .mobile-menu {
        display: none;
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        right: 0 !important;
        background: var(--card-bg) !important;
        /* Koyu arka plan */
        z-index: 999 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }

    /* Mobilde içerik padding'ini ayarla */
    @media (max-width: 1199.98px) {
        .page-content {
            margin-left: 0 !important;
            padding-top: 120px !important;
        }

        .mobile-menu {
            display: block !important;
        }
    }

    /* Scroll menü içeriğini düzenle */
    .mobile-menu .scroll-menu {
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 10px 15px !important;
        gap: 20px !important;
        background: inherit !important;
        position: relative !important;
        height: 40px !important;
        align-items: center !important;
    }

    /* Scroll çubuğu stilleri */
    .mobile-menu .scroll-menu::-webkit-scrollbar {
        height: 6px !important;
        /* Biraz daha kalın scroll */
        width: 6px !important;
        display: block !important;
    }

    .mobile-menu .scroll-menu::-webkit-scrollbar-track {
        background: var(--border-color) !important;
        border-radius: 3px !important;
    }

    .mobile-menu .scroll-menu::-webkit-scrollbar-thumb {
        background: var(--primary-color) !important;
        border-radius: 3px !important;
    }

    .mobile-menu .scroll-menu::-webkit-scrollbar-thumb:hover {
        background: var(--primary-color-hover) !important;
    }

    /* Firefox için scroll stilleri */
    .mobile-menu .scroll-menu {
        scrollbar-width: thin !important;
        scrollbar-color: var(--input-bg) !important;
    }

    /* Header'ın masaüstü görünümü için margin ayarı */
    @media (min-width: 768px) {
        .page-header {
            width: calc(100% - 260px) !important;
        }
    }

    /* Mobil menü öğelerinin stillerini güncelle */
    .mobile-menu .menu-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 65px !important;
        height: 100% !important;
        text-decoration: none !important;
        color: var(--white-text) !important;
        opacity: 0.7 !important;
        transition: all 0.3s !important;
        white-space: nowrap !important;
        margin:5px;
    }

    .mobile-menu .menu-item span {
        font-size: 13px !important;
        text-align: center !important;
        white-space: nowrap !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mobile-menu .menu-item.active {
        opacity: 1 !important;
        font-weight: 500 !important;
    }

    /* Tablet ve mobil için header düzenlemeleri */
    @media (max-width: 1199.98px) {
        .page-header {
            margin-left: 0 !important;
            width: 100% !important;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
        }

        .page-header .navbar {
            width: 100% !important;
            padding: 0 20px !important;
        }

        .header-right {
            display: flex !important;
            align-items: center !important;
            justify-content: flex-end !important;
            flex: 1 !important;
            margin-left: auto !important;
        }

        .mobile-logo {
            display: flex !important;
            align-items: center !important;
        }

        .desktop-title {
            display: none !important;
        }
    }

    /* Masaüstü için header düzenlemeleri */
    @media (min-width: 1200px) {
        .page-header {
            margin-left: 260px !important;
            width: calc(100% - 225px) !important;
        }
    }

    /* Mobil sidebar ve hamburger menü stilleri */
    .mobile-toggle {
        display: none !important;
        /* Varsayılan olarak gizli */
        margin-left: -10px !important;
        /* Sola kaydır */
    }

    @media (max-width: 1199.98px) {
        .mobile-toggle {
            display: flex !important;
            align-items: center !important;
            margin-right: 15px !important;
            margin-left: -10px !important;
            /* Sola kaydır */
        }

        /* Header title için margin ayarı */
        .header-title {
            display: flex !important;
            align-items: center !important;
            margin-left: -10px !important;
            /* Title'ı da sola kaydır */
        }

        /* Hamburger buton padding ayarı */
        .hamburger-btn {
            padding: 8px 12px 8px 0 !important;
            /* Sağ padding ekle, sol padding'i kaldır */
        }
    }

    .hamburger-btn {
        background: none !important;
        border: none !important;
        padding: 8px !important;
        cursor: pointer !important;
        color: var(--white-text) !important;
    }

    .hamburger-btn i {
        font-size: 24px !important;
    }

    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        z-index: 9998;
    }

    .mobile-sidebar-content {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background: var(--card-bg);
        transition: transform 0.3s ease-in-out;
        z-index: 10000;
        overflow-y: auto !important;
        /* Dikey scroll ekle */
        -webkit-overflow-scrolling: touch !important;
        /* iOS için smooth scroll */
    }

    .mobile-sidebar.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-sidebar.active .mobile-sidebar-content {
        transform: translateX(280px);
    }

    .mobile-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9997;
    }

    .mobile-sidebar-header {
        position: sticky !important;
        top: 0 !important;
        background: var(--card-bg) !important;
        z-index: 1 !important;
        padding: 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .mobile-sidebar-header h5 {
        margin: 0 !important;
        color: var(--white-text) !important;
    }

    .close-sidebar {
        background: none !important;
        border: none !important;
        color: var(--white-text) !important;
        cursor: pointer !important;
    }

    .mobile-sidebar-menu {
        padding: 20px !important;
        height: calc(100vh - 70px) !important;
        /* Header yüksekliğini çıkar */
        overflow-y: auto !important;
    }

    .sidebar-item {
        display: flex !important;
        align-items: center !important;
        padding: 12px 15px !important;
        color: var(--white-text) !important;
        text-decoration: none !important;
        opacity: 0.7 !important;
        transition: all 0.3s !important;
        margin-bottom: 5px !important;
    }

    .sidebar-item i {
        margin-right: 10px !important;
    }

    .sidebar-item.active {
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }

    /* Tablet ve mobil için göster */
    @media (max-width: 1199.98px) {
        .mobile-toggle {
            display: flex !important;
            align-items: center !important;
        }
    }

    /* Scroll çubuğu stilleri */
    .mobile-sidebar-content::-webkit-scrollbar {
        width: 6px !important;
    }

    .mobile-sidebar-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .mobile-sidebar-content::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2) !important;
        border-radius: 3px !important;
    }

    .mobile-sidebar-content::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3) !important;
    }


    /* Mobile Sidebar Styles */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background-color: var(--sidebar-bg);
        z-index: 9999;
        transition: all 0.3s ease;
        overflow-y: auto;
    }

    .mobile-sidebar.active {
        left: 0;
    }

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

    .mobile-sidebar-overlay.active {
        display: block;
    }

    .mobile-sidebar-header {
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-sidebar-header h5 {
        margin: 0;
        color: var(--text-color);
    }

    .close-sidebar {
        background: none;
        border: none;
        color: var(--text-color);
        font-size: 20px;
        cursor: pointer;
    }

    .mobile-sidebar-menu {
        padding: 20px;
    }

    .mobile-sidebar-menu .sidebar-item {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        color: var(--text-color);
        text-decoration: none;
        border-radius: 5px;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }

    .mobile-sidebar-menu .sidebar-item i {
        margin-right: 10px;
    }

    .mobile-sidebar-menu .sidebar-item.active,
    .mobile-sidebar-menu .sidebar-item:hover {
        background-color: var(--primary-color);
        color: white;
    }

    .hamburger-menu {
        display: none;
        background: none;
        border: none;
        color: var(--text-color);
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
    }

    @media (max-width: 1200px) {
        .page-sidebar {
            display: none;
        }

        .hamburger-menu {
            display: block;
        }

        .page-content {
            margin-left: 0 !important;
            width: 100% !important;
        }
    }

    /* Kartların genel ayarları */
    /*.custom-card {
        width: 250px;
        border: none;
        border-radius: 12px;
        transition: all 0.3s ease-in-out;
        background-color: var(--card-bg, #222);
        color: var(--white-text, #fff);
        overflow: hidden;
        padding: 15px;
    }*/

    /* Hover efekti */
    /*.custom-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    }*/

    /* Resimlerin düzenlenmesi */
    /*.custom-card .card-img-top {
        display: block;
        max-width: 300px;
        max-height: 300px;
        ;
        object-fit: contain;
        border-radius: 8px;
        margin: 0 auto;
    }
    */

    /* Kart içeriği ayarları */
    /*.custom-card .card-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 15px;
    }*/

    /* Buton düzeni */
    .custom-card .btn {
        align-self: flex-start;
        background-color: #198754;
        margin-top: auto;
    }

    /* Read More butonu */
    .read-more-btn {
        margin-top: 20px;
        padding: 12px 30px;
        font-size: 18px;
        background-color: var(--input-border);
        border: none;
        border-radius: 25px;
        color: var(--white-text);
        text-decoration: none;
        transition: background-color 0.3s;
    }

    .read-more-btn:hover {
        background-color: var(--navbar);
        color: var(--white-text);
    }

    /* Genel Başlık */
    .section-title {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--text-color);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .masonry-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        /* En az 250px olacak şekilde otomatik sütun */
        gap: 20px;
    }

    /* Kart içeriği düzenleme */
    .masonry-item {
        display: flex;
        flex-direction: column;
    }

    /* Resimleri orantılı hale getirme */
    .masonry-item img {
        width: 220px;
        height: 200px;
        height: auto;
        object-fit: contain;
        border-radius: 8px;
    }

    .overlay-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        background: rgba(0, 0, 0, 0.2);
        padding: 10px 20px;
        border-radius: 5px;
    }

    .news-slider {
        background: var(--card-bg, #222);
        border-radius: 8px;
        padding: 2rem;
        margin-bottom: 2rem;
        position: relative;
    }

    .news-slider .owl-carousel .item {
        padding: 0 15px;
    }

    .news-card {
        width: 264px;
        transition: transform 0.3s ease;
    }

    .news-card:hover {
        transform: translateY(-5px);
    }

    .news-card img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        border-radius: 4px;
    }

    .news-title {
        font-size: 17px;
        font-weight: 700;
        line-height: 1.2;
        margin: 1rem 0;
        color: #202831;
    }

    .news-meta {
        display: flex;
        justify-content: space-between;
        text-transform: uppercase;
        font-size: 10px;
        color: #6c757d;
        letter-spacing: 0.5px;
    }

    .popular-section {
        background: var(--card-bg, #222);
        border-radius: 8px;
        padding: 2rem;
        height: 100%;
    }

    .section-title {
        font-size: 28px;
        font-weight: 800;
        letter-spacing: -0.5px;
        margin-bottom: 1.5rem;
        color: #202831;
    }

    .category-label {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #6c757d;
    }

    .popular-card {
        display: flex;
        align-items: flex-start;
        padding: 12px;
        margin-bottom: 8px;
        border-radius: 7px;
        background: var(--header-search-bg, #222);
        transition: all 0.2s;
    }

    .popular-card:hover {
        opacity: 0.5;
        transform: translateY(-1px);
    }

    .popular-card img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        border-radius: 4px;
        margin-right: 12px;
        background: white;
        padding: 4px;
    }

    .popular-card .news-content {
        flex: 1;
    }

    .popular-card .news-title {
        font-size: 13px;
        line-height: 1.4;
        font-weight: 600;
        margin: 0 0 4px 0;
        color: #202831;
    }

    .popular-card .news-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 10px;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .owl-dots {
        text-align: center;
        margin-top: 1.5rem;
    }

    .owl-dot {
        display: inline-block;
        margin: 0 4px;
    }

    .owl-dot span {
        width: 8px;
        height: 8px;
        background: #ddd;
        border-radius: 50%;
        display: block;
        transition: all 0.2s;
    }

    .owl-dot.active span {
        background: #202831;
        transform: scale(1.2);
    }

    .owl-nav {
        position: absolute;
        top: 25%;
        width: 100%;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .owl-prev, .owl-next {
        position: absolute;
        width: 40px;
        height: 40px;
        background: var(--white-text) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        pointer-events: auto;
    }

    .owl-prev {
        left: -20px;
    }

    .owl-next {
        right: -20px;
    }

    .owl-prev:hover, .owl-next:hover {
        background: white !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .launch-slider-container {
        max-width: 100%;
        margin: 50px auto;
        padding: 20px;
        text-align: center;
        border-radius: 12px;
    }

    .launch-slider-title {
        font-size: 28px;
        margin-bottom: 20px;
        color: var(--white-text);
    }

    .launch-slider {
        overflow-x: auto;
        display: flex;
        gap: 20px;
        padding: 10px 0;
        scroll-snap-type: x mandatory;
    }

    .launch-slider-track {
        display: flex;
        gap: 15px;
    }

    .launch-slider-item {
        min-width: 180px;
        max-width: 180px;
        box-sizing: border-box;
        text-align: center;
        scroll-snap-align: center;
    }

    .launch-slider-image {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .launch-slider-info h3 {
        font-size: 16px;
        color: var(--white-text);
    }

    .launch-slider-info p {
        font-size: 14px;
        color: #bbb;
        margin-top: 5px;
    }

    .launch-slider::-webkit-scrollbar {
        height: 10px;
    }

    .launch-slider::-webkit-scrollbar-thumb {
        background-color: var(--border-color, #444);
        border-radius: 10px;
    }

    .launch-slider::-webkit-scrollbar-thumb:hover {
        background-color: #666;
    }

    .launch-slider::-webkit-scrollbar-track {
        background: var(--input-bg);
    }

    .filter-container {
        display: none;
        padding: 20px;
        border: 1px solid #ddd;
        margin-bottom: 10px;
    }

    .item {
        position: relative;
        display: inline-block;
    }

    .item img {
        width: 100%;
        display: block;
    }

    .first_column {
        margin-left: 80px;
        margin-right: 50px;
    }

    .second_column {

    }

    .third_column {
        margin-left: 50px;
        margin-right: 50px;
    }

    @media (min-width: 992px) and (max-width: 1199.98px) {
        .first_column {
            margin-left: 0px;
            margin-right: 70px;
        }

        .second_column {

        }

        .third_column {
            margin-left: 70px;
            margin-right: 70px;
        }
    }

    @media (min-width: 768px) and (max-width: 991.98px) {
        .first_column {
            margin-left: 0px;
            margin-right: 0px;
        }

        .second_column {

        }

        .third_column {
            margin-left: 0px;
            margin-right: 0px;
        }
    }

    @media (max-width: 768px) {
        .first_column {
            margin-left: 0px;
            margin-right: 0px;
        }

        .second_column {

        }

        .third_column {
            margin-left: 0px;
            margin-right: 0px;
        }
    }

    .slider-container {
        max-width: 1400px;
        margin: 50px auto;
        padding: 0;
        position: relative;
    }

    .slide-group {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: relative;
        height: 450px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .slide-images {
        position: relative;
        width: 100%;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slide-item {
        position: absolute;
        transition: all 0.3s ease;
        width: 120px;
    }

    .slide-item.center {
        width: 180px;
        height: 250px;
        transform: translateX(-50%) scale(1.1);
        left: 50%;
        z-index: 3;
    }

    .slide-item:nth-child(1) {
        z-index: 1;
        transform: translateX(20px) scale(0.9);
    }

    .slide-item:nth-child(2) {
        right: 90px;
        z-index: 2;
        transform: translateX(10px) scale(0.95);
    }

    .slide-item:nth-child(4) {
        left: 90px;
        z-index: 2;
        transform: translateX(-10px) scale(0.95);
    }

    .slide-item:nth-child(5) {
        z-index: 1;
        transform: translateX(-20px) scale(0.9);
    }

    .slide-item.side {
        height: 220px;
        opacity: 1;
        position: relative;
        width: 150px;
    }

    .slide-item.side::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            rgba(128, 128, 128, 0.25),
            rgba(128, 128, 128, 0.25)
        );
        border-radius: 10px;
        z-index: 2;
    }

    .slide-item.side img {
        filter: grayscale(100%);
    }

    .slide-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .slide-content {
        width: 100%;
        text-align: center;
        padding: 20px 0;
        margin-top: 20px;
        color: var(--white-text);
    }

    .slide-content h3 {
        margin: 0;
        font-size: 24px;
        color: #333;
        font-weight: bold;
        color: var(--white-text);
    }

    .slide-content p {
        margin: 10px 0 0;
        font-size: 16px;
        color: var(--white-text);
    }

    .owl-carousel {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        overflow: hidden;
    }

    .owl-item {
        padding: 0 15px;
        display: flex;
        justify-content: center;
    }

    .owl-nav button {
        position: absolute;
        top: 50%;
        transform: translateY(-250%);
        width: 50px;
        height: 50px;
        border-radius: 50% !important;
        background: #fff !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .owl-nav button span {
        font-size: 30px;
        line-height: 30px;
        color: #333;
    }

    .owl-nav {
        margin-top: 150px !important;
    }

    .owl-prev {
        left: 10px;
    }

    .owl-next {
        right: 10px;
    }

    .owl-dots {
        margin-top: 20px;
    }

    .owl-carousel .owl-nav {
        display: flex !important;
    }

    .owl-carousel .owl-nav button {
    }

    .owl-carousel .owl-nav button span {
    }

    .owl-carousel .owl-nav .owl-prev {
        display: flex !important;
    }

    .owl-carousel .owl-nav .owl-next {
        display: flex !important;
    }

    @media (max-width: 1200px) {
        .slide-group {
            max-width: 350px;
        }
    }

    @media (max-width: 768px) {
        .slide-group {
            height: 400px;
            padding: 0;
        }

        .slide-images {
            height: 280px;
        }

        .slide-content {
            margin-top: 10px;
        }

        .slider-container {
            padding: 0;
            overflow: hidden;
        }

        .owl-item {
            padding: 0;
        }

        .slide-group {
            padding: 0 20px;
        }

        .owl-carousel .owl-item:not(.active) {
            visibility: hidden;
            opacity: 0;
        }

        .owl-nav button {
            width: 40px;
            height: 40px;
        }

        .owl-prev {
            left: 5px;
        }

        .owl-next {
            right: 5px;
        }
    }

    @media (min-width: 769px) and (max-width: 1199px) {
        .slide-group {
            max-width: 350px;
        }
    }

    @keyframes blink {
        0% {
            opacity: 1;
        }
        100% {
            opacity: 0.4;
        }
    }
