/* ======================================================= */
/* ÖZEL FONT TANIMLARI - MUTLAK YOL KULLANILDI */
/* ======================================================= */

/* Snap ITC Font Tanımı */
@font-face {
    font-family: 'Snap ITC';
    /* Mutlak Yol: /admin/fonts/SnapITC.ttf */
    src: url('/admin/fonts/SnapITC.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

/* Maracb Font Tanımı */
@font-face {
    font-family: 'Maracb';
    /* Mutlak Yol: /admin/fonts/Maracb.ttf */
    src: url('/admin/fonts/Maracb.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* ======================================================= */
/* GENEL CSS STİLLERİ (LAYOUT) */
/* ======================================================= */
body, html {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background-color: #343a40; 
    color: #ffffff;
    z-index: 1000;
    transition: all 0.3s;
}

.main-content {
    margin-left: 250px;
    padding: 20px;
    min-height: 100vh;
}

.sidebar-header {
    padding: 15px 10px;
    background-color: #212529;
}
.sidebar .nav-link {
    padding: 10px 15px;
}

/* Menü Başlıklarının rengini sarı yap (Logodaki renk: #FFD700) */
.sidebar-heading {
    color: #FFD700 !important;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Responsive Ayarlar */
@media (max-width: 992px) {
    .sidebar {
        width: 70px;
    }
    .main-content {
        margin-left: 70px;
    }
    .sidebar .nav-link span,
    .sidebar-header .limassa-subtitle,
    .sidebar-heading span { 
        display: none; 
    }
    .sidebar-header .limassa-logo {
        font-size: 1.5rem !important;
    }
    .sidebar-header .limassa-logo font {
         color: #fff !important;
    }
}