﻿/* Finance Module Styles */



/* Button Styles */
.btn-lodgenda {
    background-color: #00A6FF;
    border-color: #00A6FF;
    color: white;
}

.btn-lodgenda:hover {
    background-color: #0088cc;
    border-color: #0088cc;
    color: white;
}

.btn-lodgenda-outline {
    border-color: #00A6FF;
    color: #00A6FF;
    background-color: transparent;
}

.btn-lodgenda-outline:hover {
    background-color: #00A6FF;
    border-color: #00A6FF;
    color: white;
}

/* Card Enhancements */
.card {
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
}

.table th {
    border-top: none;
    font-weight: 600;
    color: #6c757d;
    font-size: 0.875rem;
}

.table td {
    vertical-align: middle;
}

/* Payment Form Styles */
.payment-form .form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.payment-form .form-control,
.payment-form .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.payment-form .form-control:focus,
.payment-form .form-select:focus {
    border-color: #00A6FF;
    box-shadow: 0 0 0 0.2rem rgba(0, 166, 255, 0.25);
}

.payment-form .form-check-input:checked {
    background-color: #00A6FF;
    border-color: #00A6FF;
}

.payment-form .form-check-label {
    font-weight: 500;
    color: #495057;
}

/* Payment Summary Card */
.payment-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
}

/* Security Notice */
.security-notice {
    background: rgba(0, 166, 255, 0.1);
    border: 1px solid rgba(0, 166, 255, 0.2);
    border-radius: 8px;
}

/* Outstanding Balance Alert */
.outstanding-balance-alert {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffc107;
    border-radius: 12px;
}

/* Mobile Money Network Icons */
.network-option {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.network-option:hover {
    border-color: #00A6FF;
    background: rgba(0, 166, 255, 0.05);
}

.network-option.selected {
    border-color: #00A6FF;
    background: rgba(0, 166, 255, 0.1);
    color: #00A6FF;
}

.network-option i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Bank Selection */
.bank-option {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bank-option:hover {
    border-color: #00A6FF;
    background: rgba(0, 166, 255, 0.05);
}

.bank-option.selected {
    border-color: #00A6FF;
    background: rgba(0, 166, 255, 0.1);
    color: #00A6FF;
}

.bank-logo {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Earnings Cards */
.earnings-card {
    border-radius: 12px;
    border: none;
    transition: transform 0.2s ease;
}

.earnings-card:hover {
    transform: translateY(-2px);
}

.earnings-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* Payment History Styles */
.payment-status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

/* Receipt Download Styles */
.receipt-item {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.receipt-item:hover {
    border-color: #00A6FF;
    background: rgba(0, 166, 255, 0.02);
}

.receipt-item.selected {
    border-color: #00A6FF;
    background: rgba(0, 166, 255, 0.05);
}

/* Responsive Design */
@media (max-width: 576px) {
    .payment-form .row > div {
        margin-bottom: 1rem;
    }
}
