/* Main stylesheet for ZukPay */

:root {
    --primary: #3b7ddd;
    --primary-dark: #2e64b9;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --border-color: #dee2e6;
    --border-radius: 0.25rem;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fb;
    color: #495057;
}

a {
    text-decoration: none;
}

/* Card styling */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
    overflow: hidden;
}

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

.border-left-primary {
    border-left: 4px solid var(--primary);
}

.border-left-success {
    border-left: 4px solid var(--success);
}

.border-left-info {
    border-left: 4px solid var(--info);
}

.border-left-warning {
    border-left: 4px solid var(--warning);
}

.border-left-danger {
    border-left: 4px solid var(--danger);
}

/* Form controls */
.form-control:focus,
.form-select:focus {
    border-color: #a3c2e8;
    box-shadow: 0 0 0 0.25rem rgba(59, 125, 221, 0.25);
}

/* Button styling */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    margin-left: 1px;
    margin-right: 1px;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Text colors */
.text-primary {
    color: var(--primary) !important;
}

.font-weight-bold {
    font-weight: 600 !important;
}

/* Login screen */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 400px;
    max-width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .card {
        margin-bottom: 1rem;
    }
}

/* Utility classes */
.text-gray-300 {
    color: #dddfeb !important;
}

.text-gray-800 {
    color: #5a5c69 !important;
}

/* Table adjustments */
.table th {
    font-weight: 600;
    background-color: #f8f9fc;
}