/* ==========================================================================
   COMPONENTS - Bileşenler (Kartlar, Butonlar, Form Elementleri)
   ========================================================================== */

/* Entry Kartları */
.card {
    margin-bottom: 1rem;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.card-header {
    background-color: #fff;
    border-bottom: 2px solid #f8f9fa;
}

/* Başlık Kartları */
.list-group-item {
    border-left: 4px solid transparent;
    transition: all 0.2s ease;
}

.list-group-item:hover {
    border-left-color: #0d6efd;
    background-color: #f8f9fa;
}

/* Sayfalama */
.pagination {
    justify-content: center;
}

.pagination .current {
    background-color: #0d6efd;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    margin: 0 0.25rem;
}

.pagination a {
    color: #0d6efd;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    border-radius: 4px;
    margin: 0 0.25rem;
}

.pagination a:hover {
    background-color: #e9ecef;
}