body {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url('/images/background.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    color: #F0F8FF;
}

.top-section {
    background: linear-gradient(135deg, rgba(0, 161, 255, 0.4), rgba(0, 255, 143, 0.4)), url('/images/background.jpg');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stats-counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
}

.cta-section {
    background: linear-gradient(45deg, #007bff, #28a745);
    color: white;
}

.table th {
    background-color: #343a40;
    color: white;
    border: none;
}

.table td {
    vertical-align: middle;
}

.btn-group-sm .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.card {
    border-radius: 15px;
    transition: transform 0.2s ease-in-out;
    animation: fadeInUp 0.6s ease-out;
}

.badge {
    font-size: 0.75em;
}

.profile-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border: 2px solid #dee2e6;
}

.profile-img-large {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 3px solid #dee2e6;
}

.input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

#paymentMethodsList {
    scroll-behavior: smooth;
}