/* Dr. MAC Eğitim Platformu - Temel Stiller */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navbar */
.navbar-brand i {
    font-size: 1.3rem;
}

/* Kartlar */
.card-program {
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.card-program:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-program .card-header {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 1.25rem;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

/* Auth Form */
.auth-container {
    max-width: 480px;
    margin: 2rem auto;
}

.auth-container .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.auth-container .card-body {
    padding: 2rem;
}

/* Footer */
footer {
    margin-top: auto;
}

/* İstatistik Kartları */
.stat-card {
    border-radius: 12px;
    border: none;
    text-align: center;
    padding: 1.5rem;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.stat-card .stat-label {
    color: #6b7280;
    font-size: 0.9rem;
}
