/* /Components/ErrorPopup.razor.rz.scp.css */
/* Error Popup Styles */
.error-popup-overlay[b-7ddn4p5q59] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    animation: fadeIn-b-7ddn4p5q59 0.2s ease-in-out;
}

@keyframes fadeIn-b-7ddn4p5q59 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.error-popup-dialog[b-7ddn4p5q59] {
    background: white;
    border-radius: 12px;
    padding: 25px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-7ddn4p5q59 0.3s ease-out;
    text-align: center;
}

@keyframes slideUp-b-7ddn4p5q59 {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.error-popup-icon[b-7ddn4p5q59] {
    font-size: 48px;
    margin-bottom: 15px;
    animation: pulse-b-7ddn4p5q59 0.5s ease-in-out;
}

@keyframes pulse-b-7ddn4p5q59 {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.error-popup-title[b-7ddn4p5q59] {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 600;
    color: #dc3545;
}

.error-popup-message[b-7ddn4p5q59] {
    margin: 10px 0 20px 0;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    word-wrap: break-word;
}

.error-popup-actions[b-7ddn4p5q59] {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.error-popup-btn[b-7ddn4p5q59] {
    background-color: var(--tg-theme-button-color, #007bff);
    color: var(--tg-theme-button-text-color, white);
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 120px;
}

.error-popup-btn:hover[b-7ddn4p5q59] {
    opacity: 0.9;
    transform: translateY(-1px);
}

.error-popup-btn:active[b-7ddn4p5q59] {
    transform: translateY(0);
}

/* Mobile-first responsive design */
@media (max-width: 600px) {
    .error-popup-overlay[b-7ddn4p5q59] {
        padding: 15px;
    }

    .error-popup-dialog[b-7ddn4p5q59] {
        padding: 20px;
        max-width: 100%;
        border-radius: 10px;
    }

    .error-popup-icon[b-7ddn4p5q59] {
        font-size: 40px;
    }

    .error-popup-title[b-7ddn4p5q59] {
        font-size: 20px;
    }

    .error-popup-message[b-7ddn4p5q59] {
        font-size: 15px;
    }

    .error-popup-btn[b-7ddn4p5q59] {
        padding: 10px 24px;
        font-size: 15px;
        width: 100%;
    }
}

/* Very small screens (e.g., small phones) */
@media (max-width: 360px) {
    .error-popup-dialog[b-7ddn4p5q59] {
        padding: 15px;
    }

    .error-popup-icon[b-7ddn4p5q59] {
        font-size: 36px;
    }

    .error-popup-title[b-7ddn4p5q59] {
        font-size: 18px;
    }

    .error-popup-message[b-7ddn4p5q59] {
        font-size: 14px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-eydv5cc63v] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-eydv5cc63v] {
    flex: 1;
}

.sidebar[b-eydv5cc63v] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-eydv5cc63v] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-eydv5cc63v]  a, .top-row[b-eydv5cc63v]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-eydv5cc63v]  a:hover, .top-row[b-eydv5cc63v]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-eydv5cc63v]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-eydv5cc63v] {
        justify-content: space-between;
    }

    .top-row[b-eydv5cc63v]  a, .top-row[b-eydv5cc63v]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-eydv5cc63v] {
        flex-direction: row;
    }

    .sidebar[b-eydv5cc63v] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-eydv5cc63v] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-eydv5cc63v]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-eydv5cc63v], article[b-eydv5cc63v] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-83eyoxgrtz] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-83eyoxgrtz] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-83eyoxgrtz] {
    font-size: 1.1rem;
}

.bi[b-83eyoxgrtz] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-83eyoxgrtz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-83eyoxgrtz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-83eyoxgrtz] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-83eyoxgrtz] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-83eyoxgrtz] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-83eyoxgrtz] {
        padding-bottom: 1rem;
    }

    .nav-item[b-83eyoxgrtz]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-83eyoxgrtz]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-83eyoxgrtz]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-83eyoxgrtz] {
        display: none;
    }

    .collapse[b-83eyoxgrtz] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-83eyoxgrtz] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/MySubscriptions.razor.rz.scp.css */
/* Payment waiting overlay */
.payment-waiting-overlay[b-7fvddryjuw] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--tg-theme-bg-color, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.payment-waiting-content[b-7fvddryjuw] {
    text-align: center;
    padding: 40px 20px;
    max-width: 400px;
}

.payment-waiting-content h2[b-7fvddryjuw] {
    margin: 0 0 8px 0;
    font-size: 20px;
}

.pay-spinner[b-7fvddryjuw] {
    margin: 0 auto 24px;
    width: 60px;
    height: 60px;
}

.pay-spinner-circle[b-7fvddryjuw] {
    width: 100%;
    height: 100%;
    border: 4px solid #e0e0e0;
    border-top-color: #2D5BFF;
    border-radius: 50%;
    animation: pay-spin-b-7fvddryjuw 1s linear infinite;
}

@keyframes pay-spin-b-7fvddryjuw {
    to { transform: rotate(360deg); }
}

.waiting-info[b-7fvddryjuw] {
    color: #999;
    font-size: 14px;
    margin-top: 12px;
}

/* Payment success/error screens */
.pay-success-screen[b-7fvddryjuw],
.pay-error-screen[b-7fvddryjuw] {
    text-align: center;
    padding: 60px 20px 40px;
}

.pay-success-icon[b-7fvddryjuw],
.pay-error-icon[b-7fvddryjuw] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
}

.pay-success-icon[b-7fvddryjuw] {
    background: #4caf50;
}

.pay-error-icon[b-7fvddryjuw] {
    background: #f44336;
}

.pay-success-screen h2[b-7fvddryjuw] {
    color: #4caf50;
    margin: 0 0 12px 0;
}

.pay-error-screen h2[b-7fvddryjuw] {
    color: #f44336;
    margin: 0 0 12px 0;
}

.pay-success-screen p[b-7fvddryjuw],
.pay-error-screen p[b-7fvddryjuw] {
    color: #666;
    margin: 0 0 8px 0;
}

.pay-hint[b-7fvddryjuw] {
    font-size: 14px;
    color: #999 !important;
    margin-bottom: 24px !important;
}

.pay-success-screen .btn-pay-now[b-7fvddryjuw],
.pay-error-screen .btn-pay-now[b-7fvddryjuw] {
    margin-top: 24px;
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/* My Subscriptions Page Styles */
.my-subscriptions-container[b-7fvddryjuw] {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.page-title[b-7fvddryjuw] {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.loading[b-7fvddryjuw],
.error[b-7fvddryjuw],
.empty-state[b-7fvddryjuw] {
    text-align: center;
    padding: 40px 20px;
}

.error[b-7fvddryjuw] {
    color: #dc3545;
}

.retry-btn[b-7fvddryjuw],
.browse-btn[b-7fvddryjuw] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    text-decoration: none;
    display: inline-block;
}

.retry-btn:hover[b-7fvddryjuw],
.browse-btn:hover[b-7fvddryjuw] {
    background-color: #0056b3;
}

/* Subscription Card */
.subscriptions-list[b-7fvddryjuw] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscription-card[b-7fvddryjuw] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.subscription-card:hover[b-7fvddryjuw] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.subscription-header[b-7fvddryjuw] {
    display: flex;
    padding: 15px;
    cursor: pointer;
    gap: 15px;
}

.subscription-image[b-7fvddryjuw],
.subscription-image-placeholder[b-7fvddryjuw] {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.subscription-image-placeholder[b-7fvddryjuw] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.subscription-info[b-7fvddryjuw] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.subscription-name[b-7fvddryjuw] {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.subscription-meta[b-7fvddryjuw] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.status-badge[b-7fvddryjuw],
.interval-badge[b-7fvddryjuw] {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge[b-7fvddryjuw] {
    background-color: #e9ecef;
    color: #495057;
}

.status-active[b-7fvddryjuw] {
    background-color: #d4edda;
    color: #155724;
}

.status-paused[b-7fvddryjuw] {
    background-color: #fff3cd;
    color: #856404;
}

.status-cancelled[b-7fvddryjuw] {
    background-color: #f8d7da;
    color: #721c24;
}

.status-expired[b-7fvddryjuw] {
    background-color: #e2e3e5;
    color: #383d41;
}

.status-pending[b-7fvddryjuw] {
    background-color: #d1ecf1;
    color: #0c5460;
}

.interval-badge[b-7fvddryjuw] {
    background-color: #e7f3ff;
    color: #004085;
}

.autorenew-badge[b-7fvddryjuw] {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    background-color: #e8f5e9;
    color: #1b5e20;
}

.subscription-pricing[b-7fvddryjuw] {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price[b-7fvddryjuw] {
    font-size: 20px;
    font-weight: bold;
    color: #007bff;
}

.price-details[b-7fvddryjuw] {
    font-size: 14px;
    color: #6c757d;
}

.next-billing[b-7fvddryjuw] {
    font-size: 14px;
    color: #6c757d;
}

/* Subscription Details */
.subscription-details[b-7fvddryjuw] {
    border-top: 1px solid #e9ecef;
    padding: 15px;
    background-color: #f8f9fa;
}

.details-actions[b-7fvddryjuw] {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.btn-pay-now[b-7fvddryjuw],
.btn-pause[b-7fvddryjuw],
.btn-cancel[b-7fvddryjuw] {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-pay-now[b-7fvddryjuw] {
    background-color: #2D5BFF;
    color: white;
}

.btn-pay-now:hover[b-7fvddryjuw] {
    background-color: #1a44e0;
}

.btn-pay-now:disabled[b-7fvddryjuw] {
    background-color: #9ab0ff;
    cursor: not-allowed;
}

.btn-pause[b-7fvddryjuw] {
    background-color: #ffc107;
    color: #000;
}

.btn-pause:hover[b-7fvddryjuw] {
    background-color: #e0a800;
}

.btn-cancel[b-7fvddryjuw] {
    background-color: #dc3545;
    color: white;
}

.btn-cancel:hover[b-7fvddryjuw] {
    background-color: #c82333;
}

/* Order History */
.order-history[b-7fvddryjuw] {
    margin-top: 15px;
}

.order-history h4[b-7fvddryjuw] {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.orders-table[b-7fvddryjuw] {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 5px;
    overflow: hidden;
}

.orders-table th[b-7fvddryjuw],
.orders-table td[b-7fvddryjuw] {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.orders-table th[b-7fvddryjuw] {
    background-color: #f8f9fa;
    font-weight: 600;
    font-size: 14px;
    color: #495057;
}

.orders-table td[b-7fvddryjuw] {
    font-size: 14px;
}

.orders-table tbody tr:last-child td[b-7fvddryjuw] {
    border-bottom: none;
}

.order-status[b-7fvddryjuw] {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}

.order-paid[b-7fvddryjuw] {
    background-color: #d4edda;
    color: #155724;
}

.order-pending[b-7fvddryjuw] {
    background-color: #fff3cd;
    color: #856404;
}

.order-failed[b-7fvddryjuw] {
    background-color: #f8d7da;
    color: #721c24;
}

.order-cancelled[b-7fvddryjuw] {
    background-color: #e2e3e5;
    color: #383d41;
}

.loading-orders[b-7fvddryjuw],
.no-orders[b-7fvddryjuw] {
    text-align: center;
    padding: 20px;
    color: #6c757d;
    font-size: 14px;
}

/* Load More */
.load-more-container[b-7fvddryjuw] {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 20px 0;
}

.load-more-btn[b-7fvddryjuw] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.load-more-btn:hover:not(:disabled)[b-7fvddryjuw] {
    background-color: #0056b3;
}

.load-more-btn:disabled[b-7fvddryjuw] {
    background-color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 600px) {
    .my-subscriptions-container[b-7fvddryjuw] {
        padding: 15px;
    }

    .subscription-header[b-7fvddryjuw] {
        flex-direction: column;
    }

    .subscription-image[b-7fvddryjuw],
    .subscription-image-placeholder[b-7fvddryjuw] {
        width: 100%;
        height: 150px;
    }

    .orders-table[b-7fvddryjuw] {
        font-size: 12px;
    }

    .orders-table th[b-7fvddryjuw],
    .orders-table td[b-7fvddryjuw] {
        padding: 8px 5px;
    }

    .details-actions[b-7fvddryjuw] {
        flex-direction: column;
    }

    .btn-pay-now[b-7fvddryjuw],
    .btn-pause[b-7fvddryjuw],
    .btn-cancel[b-7fvddryjuw] {
        width: 100%;
    }
}
/* /Pages/Transactions.razor.rz.scp.css */
.transactions-container[b-jrtrk7fkmn] {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.page-title[b-jrtrk7fkmn] {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.loading[b-jrtrk7fkmn], .error[b-jrtrk7fkmn], .empty-state[b-jrtrk7fkmn] {
    text-align: center;
    padding: 40px 20px;
}

.loading p[b-jrtrk7fkmn], .error p[b-jrtrk7fkmn], .empty-state p[b-jrtrk7fkmn] {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.retry-btn[b-jrtrk7fkmn], .browse-btn[b-jrtrk7fkmn] {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 5px;
    transition: background-color 0.2s;
}

.retry-btn:hover[b-jrtrk7fkmn], .browse-btn:hover[b-jrtrk7fkmn] {
    background-color: #0056b3;
}

.transactions-list[b-jrtrk7fkmn] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.transaction-card[b-jrtrk7fkmn] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.transaction-card:hover[b-jrtrk7fkmn] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.transaction-header[b-jrtrk7fkmn] {
    padding: 16px;
}

.transaction-info[b-jrtrk7fkmn] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transaction-meta[b-jrtrk7fkmn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge[b-jrtrk7fkmn] {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-approved[b-jrtrk7fkmn] {
    background-color: #d4edda;
    color: #155724;
}

.status-pending[b-jrtrk7fkmn] {
    background-color: #fff3cd;
    color: #856404;
}

.status-declined[b-jrtrk7fkmn] {
    background-color: #f8d7da;
    color: #721c24;
}

.amount[b-jrtrk7fkmn] {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.transaction-dates[b-jrtrk7fkmn] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.date-item[b-jrtrk7fkmn] {
    display: flex;
    gap: 8px;
}

.date-label[b-jrtrk7fkmn] {
    font-weight: 500;
    color: #888;
}

.date-value[b-jrtrk7fkmn] {
    color: #333;
}

.subscription-details[b-jrtrk7fkmn] {
    border-top: 1px solid #e0e0e0;
    padding-top: 12px;
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}

.subscription-name[b-jrtrk7fkmn], .provider-name[b-jrtrk7fkmn] {
    margin-bottom: 6px;
}

.subscription-name strong[b-jrtrk7fkmn], .provider-name strong[b-jrtrk7fkmn] {
    color: #333;
}

.subscription-plan[b-jrtrk7fkmn] {
    color: #777;
    font-size: 13px;
    margin-top: 4px;
}

.load-more-container[b-jrtrk7fkmn] {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.load-more-btn[b-jrtrk7fkmn] {
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.load-more-btn:hover:not(:disabled)[b-jrtrk7fkmn] {
    background-color: #5a6268;
}

.load-more-btn:disabled[b-jrtrk7fkmn] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive styles */
@media (max-width: 600px) {
    .transactions-container[b-jrtrk7fkmn] {
        padding: 15px;
    }

    .page-title[b-jrtrk7fkmn] {
        font-size: 20px;
    }

    .transaction-meta[b-jrtrk7fkmn] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .amount[b-jrtrk7fkmn] {
        font-size: 18px;
    }
}
