/* Genel stiller */
body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer {
    margin-top: auto;
}

/* Kart stilleri */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    border: none;
}

.card-header {
    background-color: rgba(0, 123, 255, 0.1);
    border-bottom: 1px solid rgba(0, 123, 255, 0.2);
    font-weight: 600;
}

/* Tablo stilleri */
.table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

/* Formlar */
.form-label {
    font-weight: 500;
}

.form-control:focus, .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Butonlar */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* İstatistik Kartları */
.stat-card {
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.stat-card-primary {
    background-color: #cfe2ff;
    color: #084298;
}

.stat-card-success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.stat-card-danger {
    background-color: #f8d7da;
    color: #842029;
}

.stat-card-warning {
    background-color: #fff3cd;
    color: #664d03;
}

.stat-card-info {
    background-color: #cff4fc;
    color: #055160;
}

/* Simge stilleri */
.stat-card .icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

.stat-card .value {
    font-size: 1.75rem;
    font-weight: 600;
}

/* Giriş sayfası */
.login-container {
    max-width: 400px;
    margin: 5rem auto;
}

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo i {
    font-size: 4rem;
    color: #0d6efd;
}

/* Responsive ayarlamalar */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-card .icon {
        font-size: 2rem;
    }
    
    .stat-card .value {
        font-size: 1.5rem;
    }
} 