/* Kredi Teklifleri Sayfası Özel Stilleri */
.card {
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.btn-gold {
    background: #ffc107;
    color: #212529;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: #e0a800;
    color: #fff;
    transform: translateY(-2px);
}

.btn-gold:active {
    transform: translateY(0);
}

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

.table tbody tr {
    transition: all 0.2s ease;
}

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

.badge {
    font-weight: 500;
    padding: 0.5em 0.8em;
}

/* Form Stilleri */
.form-control, .form-select {
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
}

.form-control:focus, .form-select:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

/* Loading spinner */
.spinner-border {
    width: 1.2rem;
    height: 1.2rem;
    border-width: 0.15em;
} 