/* Genel Stiller */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: none;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

.table-responsive {
    overflow-x: auto;
}

/* Navbar Stilleri */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
}

/* Dashboard Kartları */
.card.bg-primary, 
.card.bg-success, 
.card.bg-warning, 
.card.bg-info, 
.card.bg-danger {
    color: white;
}

.card.bg-primary .card-title, 
.card.bg-success .card-title, 
.card.bg-warning .card-title, 
.card.bg-info .card-title, 
.card.bg-danger .card-title {
    font-size: 1rem;
    opacity: 0.9;
}

.card.bg-primary .card-text, 
.card.bg-success .card-text, 
.card.bg-warning .card-text, 
.card.bg-info .card-text, 
.card.bg-danger .card-text {
    font-size: 2rem;
    font-weight: 700;
}

/* Tablo Stilleri */
.table {
    font-size: 0.9rem;
}

.table th {
    font-weight: 600;
    background-color: #f8f9fa;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

/* Badge Stilleri */
.badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Form Stilleri */
.form-control, .form-select {
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .card.bg-primary .card-text, 
    .card.bg-success .card-text, 
    .card.bg-warning .card-text, 
    .card.bg-info .card-text, 
    .card.bg-danger .card-text {
        font-size: 1.5rem;
    }
}

/* Ödeme sayfası için ek stiller */
.list-group-item {
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.list-group-item label {
    cursor: pointer;
    width: 100%;
}

/* Plan kartları */
.plan-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.1);
}

.plan-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd;
}

.plan-card .period {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Ödeme yöntemleri */
.payment-method {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.payment-method.selected {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

/* Banka bilgileri */
.bank-info {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.bank-info img {
    max-height: 80px;
    margin-bottom: 15px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .plan-card {
        text-align: center;
    }
    
    .bank-info {
        text-align: center;
    }
}