/* ZiraatPay Panel Custom Styles */

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f5f6fa;
}

/* Stat Cards */
.stat-card {
    border: none;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Table Styles */
.table-hover tbody tr:hover {
    background-color: rgba(0,0,0,0.02);
}

.table th {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    border-bottom-width: 1px;
}

/* Badge Styles */
.badge-approved {
    background-color: #d4edda;
    color: #155724;
}

.badge-pending {
    background-color: #fff3cd;
    color: #856404;
}

.badge-declined {
    background-color: #f8d7da;
    color: #721c24;
}

.badge-error {
    background-color: #f8d7da;
    color: #721c24;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid #eee;
    padding: 1rem 1.5rem;
}

/* Navbar */
.navbar-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
}

.navbar-brand {
    font-size: 1.1rem;
}

/* Payment Form */
.payment-form .form-control:focus,
.payment-form .form-select:focus {
    border-color: #1a1a2e;
    box-shadow: 0 0 0 0.2rem rgba(26,26,46,0.15);
}

/* Receipt */
.receipt-card {
    max-width: 500px;
    margin: 0 auto;
}

.receipt-card .receipt-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    padding: 2rem;
    text-align: center;
}

/* Login Page */
.min-vh-100 {
    min-height: 100vh;
}

/* Filter Bar */
.filter-bar {
    background-color: white;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Empty State */
.empty-state {
    padding: 3rem;
    text-align: center;
    color: #6c757d;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
}
