/* Dashboard Styles */
.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: #6c757d;
    margin-bottom: 0;
}

/* İstatistik Kartları */
.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
}

.border-left-primary {
    border-left: 4px solid #4e73df !important;
}

.border-left-success {
    border-left: 4px solid #1cc88a !important;
}

.border-left-info {
    border-left: 4px solid #36b9cc !important;
}

.border-left-warning {
    border-left: 4px solid #f6c23e !important;
}

.text-primary {
    color: #4e73df !important;
}

.text-success {
    color: #1cc88a !important;
}

.text-info {
    color: #36b9cc !important;
}

.text-warning {
    color: #f6c23e !important;
}

.text-xs {
    font-size: 0.7rem;
}

.text-gray-800 {
    color: #5a5c69 !important;
}

.text-gray-300 {
    color: #dddfeb !important;
}

/* Tablo Stilleri */
.table th {
    border-top: none;
    font-weight: 600;
    color: #2c3e50;
    background-color: #f8f9fc;
}

.table td {
    vertical-align: middle;
}

/* Buton Stilleri */
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.775rem;
    border-radius: 0.35rem;
}

/* Modal Stilleri */
.modal-header {
    background: linear-gradient(135deg, #2c721f 0%, #2c721f 100%);
    color: white;
    border-bottom: none;
    border-top-right-radius: 12px;
    border-top-left-radius: 12px;
}

.modal-body {
    border-radius: 12px;
}

.modal-header .btn-close {
    filter: invert(1);
}

/* Form Stilleri */
.form-label {
    font-weight: 600;
    color: #2c3e50;
}

.form-control, .form-select {
    border: 2px solid #e3e6f0;
    border-radius: 0.35rem;
    transition: all 0.15s ease-in-out;
}

.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* API Test Paneli */
#testResult {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    background-color: #f8f9fa;
    border: 2px solid #e3e6f0;
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.5s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dashboard-header h1 {
        font-size: 1.5rem;
    }
    
    .card-body {
        padding: 1rem;
    }
}

/* Navbar özelleştirmeleri */
.navbar-brand {
    font-size: 1.25rem;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    margin: 0 0.1rem;
    transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    border-radius: 0.35rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fc;
}