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

.footer {
    margin-top: auto;
    padding: 1rem 0;
    background-color: #fff;
    border-top: 1px solid #dee2e6;
}

/* Container Düzenlemeleri */
.container-fluid {
    padding: 1.5rem;
}

/* Dashboard Kartları */
.card.bg-primary, .card.bg-success, .card.bg-info, .card.bg-secondary {
    transition: transform 0.2s;
}

.card.bg-primary:hover, .card.bg-success:hover, .card.bg-info:hover, .card.bg-secondary:hover {
    transform: translateY(-5px);
}

.icon-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 0.5rem;
    transition: transform 0.2s;
}

.card:hover .icon-box {
    transform: scale(1.1);
}

.text-uppercase {
    letter-spacing: 0.5px;
}

/* DataTables Düzenlemeleri */
.dataTables_wrapper {
    padding: 1rem;
    background-color: #fff;
    border-radius: 0.25rem;
}

.dataTables_length select {
    min-width: 4.5rem;
}

.dataTables_filter input {
    min-width: 17rem;
}

.table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

/* Form Düzenlemeleri */
.form-group {
    margin-bottom: 1rem;
}

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

/* Alert Düzenlemeleri */
.alert {
    margin-bottom: 1rem;
    border: none;
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

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

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header .card-title {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

/* Buton Düzenlemeleri */
.btn {
    font-weight: 500;
}

.btn-group-sm > .btn,
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.btn i {
    margin-right: 0.3rem;
}

/* Tablo Düzenlemeleri */
.table-responsive {
    margin-bottom: 1rem;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: middle;
}

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

/* Badge Düzenlemeleri */
.badge {
    font-weight: 500;
    padding: 0.4em 0.7em;
}

.badge-success {
    background-color: #28a745;
}

.badge-danger {
    background-color: #dc3545;
}

/* Navbar Düzenlemeleri */
.navbar {
    padding: 0.7rem 1rem;
    margin-bottom: 0;
    background-color: #343a40 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

/* Modal Düzenlemeleri */
.modal-content {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.modal-header {
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* Input Group Düzenlemeleri */
.input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
}

/* Dropdown Düzenlemeleri */
.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    padding: 0.5rem 1rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Font Awesome İkon Düzenlemeleri */
.fas {
    width: 1.25em;
    text-align: center;
} 