* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #1e293b;
}

.subscription-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px;
}

/* ==================== HEADER ==================== */
.subscription-header {
    margin-bottom: 32px;
}

.subscription-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2a44;
    display: flex;
    align-items: center;
    gap: 12px;
}

.subscription-header h1 i {
    color: #f2a83a;
}

.subscription-header p {
    color: #64748b;
    margin-top: 8px;
}

/* ==================== MAIN TABS ==================== */
.main-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    background: white;
    padding: 8px;
    border-radius: 60px;
    border: 1px solid #e2e8f0;
}

.main-tab {
    flex: 1;
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.main-tab i {
    font-size: 1rem;
}

.main-tab:hover {
    color: #f2a83a;
    background: #fef9f0;
}

.main-tab.active {
    background: linear-gradient(135deg, #1f2a44, #2d3a5e);
    color: white;
    box-shadow: 0 4px 12px rgba(31, 42, 68, 0.15);
}

.main-tab.active i {
    color: #f2a83a;
}

/* ==================== TAB CONTENT ==================== */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== CURRENT PLANS SECTION ==================== */
.current-plans-section {
    margin-bottom: 40px;
}

.current-plans-section h2 {
    font-size: 1.2rem;
    color: #1f2a44;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-plans-section h2 i {
    color: #f2a83a;
}

.current-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

/* Plan Card Styles */
.plan-card {
    background: linear-gradient(135deg, #1f2a44, #2d3a5e);
    border-radius: 20px;
    padding: 24px;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: auto;
    min-height: auto;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.25);
}

.plan-card.pending-card {
    background: linear-gradient(135deg, #2d3a5e, #1f2a44);
    border-left: 4px solid #f2a83a;
    position: relative;
    overflow: hidden;
}

.plan-card.pending-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(242, 168, 58, 0.05),
        rgba(242, 168, 58, 0.05) 20px,
        transparent 20px,
        transparent 40px
    );
    pointer-events: none;
}

.plan-info {
    flex: 1;
}

.plan-name-period {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.plan-name-period strong {
    font-weight: 700;
    font-size: 1.2rem;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f2a83a;
    margin: 12px 0 8px 0;
}

.plan-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 10px;
}

.period-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-left: 8px;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: #10b981;
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.status-badge.pending {
    background: #f2a83a;
    color: #1f2a44;
    box-shadow: 0 2px 8px rgba(242, 168, 58, 0.3);
    animation: pulse 2s infinite;
}

.status-badge.expired {
    background: #ef4444;
    color: white;
}

.status-badge.cancelled {
    background: #6b7280;
    color: white;
}

/* Action Buttons */
.plan-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.plan-actions button {
    flex: 1;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-align: center;
}

.cancel-plan-btn {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.cancel-plan-btn:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
}

.renew-plan-btn {
    background: #f2a83a;
    color: #1f2a44;
}

.renew-plan-btn:hover {
    background: #e5982b;
    transform: translateY(-2px);
}

.view-details-btn {
    background: rgba(242, 168, 58, 0.15);
    color: #f2a83a;
    border: 1px solid #f2a83a;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    text-align: center;
}

.view-details-btn:hover {
    background: #f2a83a;
    color: #1f2a44;
    transform: translateY(-2px);
}

/* Days Remaining Styling */
.days-remaining {
    font-size: 0.75rem;
    margin-top: 8px;
    color: #10b981;
    font-weight: 600;
    display: inline-block;
    padding: 4px 10px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 20px;
}

.days-remaining.expiring {
    color: #f2a83a;
    background: rgba(242, 168, 58, 0.15);
}

.days-remaining.expired {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
}

/* Pulse Animation for Pending Status */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 168, 58, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(242, 168, 58, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(242, 168, 58, 0);
    }
}

/* No Active Plans */
.no-active-plans {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.no-active-plans i {
    font-size: 3rem;
    color: #94a3b8;
    margin-bottom: 16px;
    display: block;
}

.no-active-plans p {
    color: #64748b;
    margin-bottom: 20px;
}

.upgrade-plan-btn {
    background: #f2a83a;
    color: #1f2a44;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.upgrade-plan-btn:hover {
    background: #e5982b;
    transform: translateY(-2px);
}

.refresh-status-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.refresh-status-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* ==================== SUBSCRIPTION HISTORY ==================== */
.subscription-history-section {
    background: white;
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 32px;
    border: 1px solid #e2e8f0;
}

.subscription-history-section h2 {
    font-size: 1.2rem;
    color: #1f2a44;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscription-history-section h2 i {
    color: #f2a83a;
}

.history-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.history-tab {
    padding: 8px 20px;
    background: #f1f5f9;
    border: none;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.history-tab:hover,
.history-tab.active {
    background: #f2a83a;
    color: #1f2a44;
}

.subscriptions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.subscription-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.subscription-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.subscription-arrow {
    color: #94a3b8;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.subscription-item:hover .subscription-arrow {
    color: #f2a83a;
    transform: translateX(3px);
}

.subscription-info {
    flex: 1;
}

.subscription-plan-name {
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 4px;
}

.subscription-period {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 8px;
}

.subscription-dates {
    font-size: 0.7rem;
    color: #64748b;
}

.subscription-status {
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
}

.subscription-status.active {
    background: #d1fae5;
    color: #059669;
}

.subscription-status.pending {
    background: #fef3c7;
    color: #d97706;
}

.subscription-status.expired {
    background: #fee2e2;
    color: #dc2626;
}

.subscription-status.cancelled {
    background: #f1f5f9;
    color: #64748b;
}

.subscription-price {
    font-weight: 700;
    color: #f2a83a;
    min-width: 100px;
    text-align: right;
}

/* ==================== PAYMENT HISTORY ==================== */
.payment-history-section {
    background: white;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #e2e8f0;
}

.payment-history-section h2 {
    font-size: 1.2rem;
    color: #1f2a44;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-history-section h2 i {
    color: #f2a83a;
}

.payment-history-controls {
    margin-bottom: 20px;
}

.payment-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-filter input,
.payment-filter select {
    padding: 10px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

.payment-filter input:focus,
.payment-filter select:focus {
    outline: none;
    border-color: #f2a83a;
}

.payment-filter input {
    flex: 1;
    min-width: 200px;
}

.payment-table-container {
    overflow-x: auto;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
}

.payment-table th,
.payment-table td {
    padding: 14px 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.payment-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #475569;
    font-size: 0.8rem;
}

.payment-table td {
    font-size: 0.85rem;
    color: #475569;
}

.payment-table tbody tr {
    cursor: pointer;
    transition: background 0.2s;
}

.payment-table tbody tr:hover {
    background: #f8fafc;
}

.payment-status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
}

.payment-status-badge.completed {
    background: #d1fae5;
    color: #059669;
}

.payment-status-badge.pending {
    background: #fef3c7;
    color: #d97706;
}

.payment-status-badge.failed {
    background: #fee2e2;
    color: #dc2626;
}

/* View Proof Button Styles */
.view-proof-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.view-proof-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.view-proof-detail-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.view-proof-detail-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.no-proof {
    color: #94a3b8;
    font-size: 0.7rem;
    font-style: italic;
}

/* ==================== UPGRADE BANNER ==================== */
.upgrade-banner {
    background: linear-gradient(135deg, #fef9f0, #fff5e6);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #f2a83a;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.banner-content i {
    font-size: 2rem;
    color: #f2a83a;
}

.banner-content h3 {
    font-size: 1.1rem;
    color: #1f2a44;
    margin-bottom: 4px;
}

.banner-content p {
    font-size: 0.8rem;
    color: #64748b;
}

.upgrade-now-btn {
    padding: 10px 28px;
    background: #f2a83a;
    color: #1f2a44;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.upgrade-now-btn:hover {
    background: #e5982b;
    transform: translateY(-2px);
}

/* ==================== MODAL STYLES ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #1f2a44, #2d3a5e);
    border-radius: 24px 24px 0 0;
}

.modal-header h2 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h2 i {
    color: #f2a83a;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Enhanced Detail Row Styles */
.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #475569;
    font-size: 0.85rem;
    width: 40%;
}

.detail-value {
    color: #1e293b;
    font-size: 0.85rem;
    width: 60%;
    text-align: right;
    word-break: break-word;
}

/* Proof Modal Styles */
#proofViewModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

#proofViewModal .modal-content {
    background: white;
    border-radius: 24px;
    max-width: 90%;
    width: auto;
    max-height: 90vh;
    overflow: auto;
    animation: slideUp 0.3s ease;
}

#proofViewModal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #1f2a44, #2d3a5e);
    border-radius: 24px 24px 0 0;
}

#proofViewModal .modal-header h2 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

#proofViewModal .modal-header h2 i {
    color: #f2a83a;
}

#proofViewModal .modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

#proofViewModal .modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

#proofViewModal .modal-body {
    padding: 24px;
    text-align: center;
}

#proofViewModal .modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Status Colors in Modals */
.status-active {
    color: #059669;
    font-weight: 600;
}

.status-pending {
    color: #d97706;
    font-weight: 600;
}

.status-expired {
    color: #dc2626;
    font-weight: 600;
}

.status-cancelled {
    color: #6b7280;
    font-weight: 600;
}

.status-completed {
    color: #059669;
    font-weight: 600;
}

/* Admin verification message in modal */
.admin-message {
    background: #fef3c7;
    border-left: 4px solid #f2a83a;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #92400e;
}

.admin-message i {
    color: #f2a83a;
    font-size: 1rem;
}

/* ==================== LOADING STATES ==================== */
.loading-spinner {
    text-align: center;
    padding: 40px;
    color: #94a3b8;
}

.loading-cell {
    text-align: center;
    padding: 40px !important;
    color: #94a3b8;
}

/* ==================== TOAST NOTIFICATION ==================== */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1f2a44;
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 0.85rem;
    z-index: 1000;
    animation: slideIn 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==================== PENDING WAITING SECTION ==================== */
.pending-waiting .pending-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    text-align: left;
}

.pending-waiting .pending-info ul {
    margin: 10px 0 0 20px;
    list-style: disc;
}

.pending-waiting .pending-info li {
    margin: 5px 0;
    font-size: 0.85rem;
}

.contact-support-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.contact-support-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.small-text {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .subscription-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background: #ffffff;
        padding: 20px 16px;
        overflow-y: auto;
    }

    .back-nav {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #1f2a44;
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 24px;
        cursor: pointer;
        padding: 8px 0;
    }

    .back-nav i {
        font-size: 1.2rem;
    }

    .subscription-header h1 {
        font-size: 1.5rem;
    }

    .main-tabs {
        gap: 8px;
        padding: 6px;
    }

    .main-tab {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .plan-card {
        padding: 20px;
    }
    
    .plan-name-period strong {
        font-size: 1rem;
    }
    
    .plan-price {
        font-size: 1.3rem;
    }
    
    .plan-actions {
        flex-direction: column;
    }
    
    .plan-actions button {
        width: 100%;
    }
    
    .plan-status {
        flex-direction: column;
        align-items: flex-start;
    }

    .current-plans-grid {
        grid-template-columns: 1fr;
    }

    .history-tabs {
        gap: 8px;
        justify-content: center;
    }

    .history-tab {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    .subscription-item {
        flex-direction: column;
        text-align: center;
    }

    .subscription-price {
        text-align: center;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .payment-filter {
        flex-direction: column;
    }

    .payment-filter input {
        min-width: auto;
    }

    .payment-table th,
    .payment-table td {
        padding: 10px 8px;
        font-size: 0.75rem;
    }

    .toast-notification {
        bottom: 80px;
        right: 20px;
        left: 20px;
        text-align: center;
    }

    .modal-content {
        width: 95%;
        margin: 16px;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 4px;
    }
    
    .detail-label,
    .detail-value {
        width: 100%;
        text-align: left;
    }
    
    .detail-value {
        text-align: left;
        padding-left: 8px;
    }

    .view-proof-btn {
        padding: 4px 10px;
        font-size: 0.65rem;
    }

    #proofViewModal .modal-content {
        width: 95%;
        margin: 16px;
    }
}

@media (min-width: 769px) {
    .back-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .subscription-container {
        padding: 16px 12px;
    }

    .subscription-header h1 {
        font-size: 1.3rem;
    }

    .main-tab {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .plan-card {
        padding: 16px;
    }

    .plan-price {
        font-size: 1.2rem;
    }

    .payment-table th,
    .payment-table td {
        padding: 8px 6px;
        font-size: 0.7rem;
    }
}

/* Pending Warning Styling */
.pending-warning {
    background: rgba(242, 168, 58, 0.15);
    color: #f2a83a;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pending-warning i {
    font-size: 0.7rem;
}

/* Payment Info */
.payment-info {
    margin-top: 4px;
    color: #f2a83a;
}

/* Empty History */
.empty-history {
    text-align: center;
    padding: 40px;
    color: #64748b;
}