/* KubbeSoft Çiftlik Yönetim Scripti - Özel CSS */

/* Genel Stil */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1 0 auto;
}

/* Dashboard Kartları */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* İkonlar */
.fas {
    margin-right: 5px;
}

/* Tablo Düzenlemeleri */
.table th {
    font-weight: 600;
}

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

/* Navbar */
.navbar-brand {
    font-weight: 700;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Login Sayfası */
.login-form {
    max-width: 400px;
    margin: 0 auto;
}

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

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Badge'ler */
.badge {
    font-weight: 500;
    padding: 0.4em 0.6em;
}

/* Butonlar */
.btn {
    font-weight: 500;
    letter-spacing: 0.3px;
}

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

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

/* Footer */
footer {
    padding: 20px 0;
    margin-top: 30px;
}

/* DataTables Düzenlemeleri */
.dataTables_wrapper .dataTables_length, 
.dataTables_wrapper .dataTables_filter, 
.dataTables_wrapper .dataTables_info, 
.dataTables_wrapper .dataTables_processing, 
.dataTables_wrapper .dataTables_paginate {
    margin-bottom: 10px;
}

/* Kart ikon renkleri */
.card .text-primary {
    color: #0d6efd !important;
}

.card .text-success {
    color: #198754 !important;
}

.card .text-danger {
    color: #dc3545 !important;
}

.card .text-warning {
    color: #ffc107 !important;
}

.card .text-info {
    color: #0dcaf0 !important;
}

.card .text-secondary {
    color: #6c757d !important;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
}