﻿/* THEME COLORS */
.text-purple {
    color: #5e2ca5 !important;
}

.bg-purple {
    background-color: #5e2ca5 !important;
}

/* HEADER GRADIENT */
.header-gradient {
    background: linear-gradient(90deg, #5e2ca5, #7b1fa2, #9c27b0);
    color: white;
}

/* CARD HEADER */
.card-header-gradient {
    background: linear-gradient(90deg, #673ab7, #512da8);
    color: white;
    font-weight: bold;
    text-align: center;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

/* STATUS BADGES */
.badge-success {
    background-color: #28a745;
    color: white;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.badge-pending {
    background-color: #ffc107;
    color: #212529;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.badge-failed {
    background-color: #dc3545;
    color: white;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

/* BUTTON STYLE */
.btn-purple-gradient {
    background: linear-gradient(90deg, #673ab7, #512da8);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

    .btn-purple-gradient:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(103, 58, 183, 0.4);
    }

/* TABLE STYLE */
.table thead {
    background-color: #f3e8ff;
    color: #5e2ca5;
    font-weight: bold;
}

/* RESPONSIVE TABLE */
.table-responsive {
    max-height: 500px;
    overflow: auto;
}

.header-gradient {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Pay Button Gradient */
.btn-gradient {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease-in-out;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .btn-gradient i {
        font-size: 1rem;
    }

    .btn-gradient:hover {
        background: linear-gradient(135deg, #218838, #17a589);
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

/* Loader Gradient */
.text-gradient {
    color: #6f42c1;
}

/* Card shadow refinement */
.card {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Input focus effect */
.form-control:focus {
    border-color: #6f42c1;
    box-shadow: 0 0 6px rgba(111,66,193,0.3);
}
