/* /assets/css/style.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* DEĞİŞTİ: Sidebar renkleri güncellendi */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    padding: 20px;
    background: linear-gradient(135deg, #a11a14, #d2201a); /* Kırmızı gradient */
    color: #fff;
    z-index: 1000;
}
.sidebar h3 {
    font-weight: 700;
    color: #fff; /* Beyaz renk */
    text-align: center;
    margin-bottom: 30px;
}
.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.sidebar .nav-link:hover, .sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2); /* Vurgu rengi */
    color: #fff;
}

.main-content {
    margin-left: 280px;
    padding: 30px;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

/* DEĞİŞTİ: Stat card ikon rengi güncellendi */
.stat-card i {
    font-size: 2.5rem;
    color: #d2201a;
}

/* DEĞİŞTİ: Ana buton rengi güncellendi */
.btn-primary {
    background-color: #d2201a;
    border-color: #d2201a;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #a11a14; /* Hover için daha koyu kırmızı */
    border-color: #a11a14;
}

/* DEĞİŞTİ: Giriş ekranı arkaplanı güncellendi */
.login-page {
    background: linear-gradient(135deg, #a11a14, #d2201a);
    height: 100vh;
}

/* DEĞİŞTİ: Giriş ekranındaki başlık rengi */
.login-page .text-primary {
    color: #d2201a !important;
}