/* ============================================
   FlashCash Navigation Styles
   ============================================ */

/* CSS Variables */
:root {
    --body-bg: #000;
    --flashcash-bg: #FFFFFF0F;
    --flashcash-accent: #95E01D;
    --flashcash-accent-hover: #a8f534;
    --flashcash-menu-bg: #FFFFFF0F;
    --flashcash-menu-hover: #ffffff3a;
    --flashcash-text: #FFFFFF;
    --flashcash-text-muted: #FFFFFFCC;
}

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;1,800&display=swap');

body {
    background-color: var(--body-bg) !important;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.text-accent {
    color: var(--flashcash-accent) !important;
}

.bg-transparent {
    background: transparent !important;
}

.main-p {
    padding: 0 0 80px;
}

.flex-1 {
    flex: 1 0 auto;
}

.container-margin-top {
    margin-top: 35px;
}

.modal-dialog {
    background-color: var(--body-bg) !important;
}

/* ============================================
   Navbar Base
   ============================================ */
.flashcash-navbar {
    background-color: var(--flashcash-bg) !important;
    padding-top: 11px !important;
    padding-bottom: 11px !important;
}

/* ============================================
   Logo
   ============================================ */
.flashcash-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.flashcash-logo-icon {
    width: 24px;
    height: 24px;
}

.flashcash-logo-text {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 20px;
    line-height: 24px;
    color: var(--flashcash-accent);
}

.flashcash-logo:hover .flashcash-logo-text {
    color: var(--flashcash-accent);
    opacity: 0.9;
}

/* ============================================
   Navigation Links
   ============================================ */
.flashcash-nav-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 6px 12px !important;
    background-color: var(--flashcash-menu-bg) !important;
    border-radius: 6px;
    color: var(--flashcash-text) !important;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px !important;
    line-height: 100% !important;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.flashcash-nav-link:hover {
    background-color: var(--flashcash-menu-hover);
    opacity: 0.95;
}

.flashcash-nav-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ============================================
   Account Button
   ============================================ */
.flashcash-navbar .btn-dark {
    padding: 6.5px 12px !important;
    background-color: var(--flashcash-accent) !important;
    border: none !important;
    border-radius: 6px;
    color: var(--body-bg) !important;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    transition: background-color 0.2s ease;
}

.flashcash-navbar .btn-dark:hover,
.flashcash-navbar .btn-dark:focus,
.flashcash-navbar .btn-dark:active,
.flashcash-navbar .btn-dark.show {
    background-color: var(--flashcash-accent-hover) !important;
    color: var(--body-bg) !important;
    border: none !important;
    box-shadow: none !important;
}

/* ============================================
   Dropdown Menu
   ============================================ */
.flashcash-navbar .dropdown-menu {
    background-color: #2d2d2d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 4px;
    margin-top: 8px;
}

.flashcash-navbar .dropdown-item {
    color: var(--flashcash-text);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.flashcash-navbar .dropdown-item:hover,
.flashcash-navbar .dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--flashcash-text);
}

/* ============================================
   Mobile Styles
   ============================================ */
@media (max-width: 1199.98px) {
    .flashcash-nav-link {
        margin-bottom: 4px;
    }
    
    .navbar-nav {
        margin-top: 12px;
    }
    
    .flashcash-navbar .btn-dark {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }
    
    .flashcash-navbar .dropdown-menu {
        width: 100%;
    }
}

/* ============================================
   Navbar Toggler (Mobile)
   ============================================ */
.flashcash-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.flashcash-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(149, 224, 29, 0.25);
}

.flashcash-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   Footer Styles
   ============================================ */
.flashcash-footer {
    width: 100%;
    background-color: var(--flashcash-menu-bg) !important;
    padding: 17px 0 28px;
}

/* Footer Top Section */
.flashcash-footer-top {
    display: flex;
    gap: 66px;
    margin-bottom: 32px;
}

/* Footer Brand (Logo + Description) */
.flashcash-footer-brand {
    max-width: 679px;
    margin-bottom: 30px;
}

.flashcash-footer-brand .flashcash-logo {
    display: flex;
}

.flashcash-footer-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 18px !important;
    color: #757575 !important;
    margin: 0 !important;
}

/* Footer Partners */
.flashcash-footer-partners {
    flex-shrink: 0;
}

.flashcash-footer-partners-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--flashcash-text);
    margin: 12px 0 14px;
}

.flashcash-footer-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 90px);
    gap: 12px;
}

.flashcash-partner-block {
    width: 90px;
    height: 30px;
    background: rgba(149, 224, 29, 0.2);
    border-radius: 4px;
}

/* Footer Navigation */
.flashcash-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
    padding-bottom: 24px;
}

.flashcash-footer-link {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.flashcash-footer-link:hover {
    color: #FFFFFF;
    opacity: 0.8;
}

/* Footer Copyright */
.flashcash-footer-copyright {
    text-align: left;
    color: #FFFFFF;
}

.flashcash-footer-copyright small {
    font-family: 'Inter', sans-serif !important;
    font-style: normal;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 17px;
    color: #FFFFFFB2 !important;
}

/* Mobile Styles */
@media (max-width: 991.98px) {
    .flashcash-footer-top {
        flex-direction: column;
        gap: 32px;
    }
    
    .flashcash-footer-brand {
        max-width: 100%;
    }
}

/* ============================================
   Alert Styles (FlashCash Theme)
   ============================================ */
.alert {
    border-radius: 6px !important;
    padding: 12px 16px !important;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    margin-bottom: 16px;
    background-color: transparent !important;
}

/* Warning Alert */
.alert-warning {
    background: rgba(255, 193, 7, 0.15) !important;
    color: #FFC107 !important;
    border-color: rgba(255, 193, 7, 0.2) !important;
}

/* Success Alert */
.alert-success {
    background: rgba(149, 224, 29, 0.15) !important;
    color: #95E01D !important;
    border-color: rgba(149, 224, 29, 0.2) !important;
}

/* Danger Alert */
.alert-danger {
    background: rgba(220, 53, 69, 0.15) !important;
    color: #DC3545 !important;
    border-color: rgba(220, 53, 69, 0.2) !important;
}

/* Info/Secondary Alert */
.alert-info,
.alert-secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ============================================
   Card Styles (FlashCash Theme)
   ============================================ */
.card {
    background-color: var(--flashcash-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 24px;
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: var(--flashcash-text);
}

.card-body {
    padding: 20px;
    color: var(--flashcash-text);
}

/* ============================================
   Link Styles
   ============================================ */
a {
    color: var(--flashcash-accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    color: var(--flashcash-accent-hover);
    opacity: 0.9;
}

.text-dark {
    color: var(--flashcash-text) !important;
}

.text-dark:hover {
    color: var(--flashcash-accent) !important;
}

/* ============================================
   Text Utilities
   ============================================ */
.text-muted {
    color: #757575 !important;
}

.small {
    font-size: 14px;
}

/* ============================================
   Heading Styles
   ============================================ */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--flashcash-text);
    font-family: 'Inter', sans-serif;
}

.h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

/* ============================================
   Form Styles (FlashCash Theme)
   ============================================ */
.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--flashcash-text);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--flashcash-accent);
    color: var(--flashcash-text);
    outline: none;
    box-shadow: 0 0 0 3px rgba(149, 224, 29, 0.1);
}

.form-control::placeholder {
    color: #757575;
}

/* ============================================
   Table Styles (FlashCash Theme)
   ============================================ */
.table {
    color: var(--flashcash-text);
    border-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.table thead th {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 16px;
    color: var(--flashcash-text);
}

.table tbody td {
    border-color: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    vertical-align: middle;
}

.table-bordered {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-bordered th,
.table-bordered td {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-hover tbody tr {
    transition: background-color 0.2s ease;
}

.table-hover tbody tr:hover {
    background-color: rgba(149, 224, 29, 0.05);
    cursor: pointer;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Table responsive wrapper */
.table-responsive {
    border-radius: 6px;
}

/* ============================================
   Image Styles
   ============================================ */
img {
    vertical-align: middle;
}

/* ============================================
   Reusable Glass Components
   ============================================ */

.glass-wrapper {
    background-color: rgba(255, 255, 255, 0.02) !important;
    padding-top: 35px;
}

/* 1. Card Container */
.glass-card {
    background: rgba(255, 255, 255, 0.04) !important; /* #FFFFFF0A */
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-bottom: 24px;
}

/* 2. Card Header */
.glass-header {
    background: rgba(255, 255, 255, 0.04) !important; /* #FFFFFF0A */
    backdrop-filter: blur(61.3px);
    -webkit-backdrop-filter: blur(61.3px);
    padding: 16px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    color: #FFFFFF !important;
}

.glass-cell a {
    color: var(--flashcash-accent) !important;
    text-decoration: none;
}

/* Header Glow (Ellipse) */
.glass-header::before {
    content: '';
    position: absolute;
    width: 128px;
    height: 50px;
    left: 139px;
    top: 20px;
    background: rgba(186, 240, 40, 0.25); /* #BAF02840 */
    filter: blur(33.35px);
    z-index: 0;
    pointer-events: none;
}

.glass-header * {
    position: relative;
    z-index: 1;
}

/* 3. Card Body */
.glass-body {
    padding: 16px 16px 30px 16px !important;
    background: transparent !important;
    color: #FFFFFF !important;
}

.glass-body-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: var(--flashcash-text-muted) !important;
}

/* 4. Search Input */
.glass-search {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 6px;
    margin-bottom: 20px !important;
    color: #FFFFFF !important;
}

.glass-search::placeholder {
  color: #707070 !important;
}

.glass-search:focus {
    border-color: #95E01D;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

/* Custom Checkbox */
.form-check-input.glass-search {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.form-check-input.glass-search:checked {
    background-color: rgba(149, 224, 29, 0.1) !important;
    border-color: #95E01D !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2395E01D' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e") !important;
}

.form-check-input.glass-search:focus {
    box-shadow: 0 0 0 0.25rem rgba(149, 224, 29, 0.15) !important;
    border-color: #95E01D !important;
}

/* 5. Table (Flex-like structure) */

.glass-table-scroll {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 8px;
}

.glass-table {
    display: table !important;
    width: 100%;
    border: none !important;
}

.glass-table-flex {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    border-top: none !important;
}

.glass-table-flex tbody {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 6px;
}


/* Custom Scrollbar */
.glass-table-scroll::-webkit-scrollbar {
    width: 4px;
}

.glass-table-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 45px;
    backdrop-filter: blur(30.65px);
}
.glass-table-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 45px;
}

/* .glass-table tbody {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    border-top: none !important;
} */

/* 6. Table Row */
.glass-row {
    display: flex;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(30.65px);
    -webkit-backdrop-filter: blur(30.65px);
    border-radius: 45px;
    transition: background 0.2s ease;
    border: none !important;
    margin-top: 5px;
}

.glass-row-selected {
    background: rgba(149, 224, 29, 0.2) !important; /* #95E01D33 */
    backdrop-filter: blur(30.65px);
}

.glass-row:hover {
    background: rgba(149, 224, 29, 0.2) !important; /* #95E01D33 */
    backdrop-filter: blur(30.65px);
    cursor: pointer;
}

/* 7. Table Cell */
.glass-cell {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 7px !important;
    border: none !important;
    background: transparent !important;
    color: white; /* Ensure text is white */
}

/* 8. Icon */
.glass-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-right: 12px !important;
    object-fit: cover;
}

/* 9. Text/Name */
.glass-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    color: #FFFFFF;
}

.glass-text-muted {
    color: #929292 !important;
}

/* Reset standard table styles inside glass-table */
.glass-table td, 
.glass-table th, 
.glass-table tr {
    border: none !important;
}

.table-rates-col th {
    background-color: transparent !important;
}

.glass-body-text tr td {
    color: var(--flashcash-text-muted) !important;
    padding: 14px 0px !important;
}

.glass-body-text tr td a {
    color: var(--flashcash-accent) !important;
    text-decoration: none;
}

.bg-transparent-color {
    background-color: transparent !important;
}

/* Mobile Rates Label */
.glass-mobile-label {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    color: #FFFFFF;
}

.glass-mobile-value {
    font-size: 14px !important;
}


/* ============================================
   Exchange Confirmation Styles
   ============================================ */
.w-max-500 {
    max-width: 700px !important;
}

.confirm-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.confirm-table tr:last-child {
    border-bottom: none !important;
}

.confirm-table td {
    padding: 12px 20px !important;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.confirm-table tr:last-child td {
    border-bottom: none;
}

.confirm-table td:last-child {
    text-align: right;
}

.glass-btn {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--flashcash-accent) !important;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--flashcash-accent);
}

.glass-btn-accent {
    background: var(--flashcash-accent) !important;
    border: 1px solid var(--flashcash-accent) !important;
    color: #000 !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.glass-btn-accent:hover {
    background: var(--flashcash-accent-hover) !important;
    border-color: var(--flashcash-accent-hover) !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(149, 224, 29, 0.4);
}

/* Glass Pagination */
.pagination {
    gap: 5px;
}

.pagination .page-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 4px;
}

.pagination .page-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--flashcash-accent);
}

.pagination .page-item.active .page-link {
    background: var(--flashcash-accent);
    border-color: var(--flashcash-accent);
    color: #000;
    box-shadow: 0 0 10px rgba(149, 224, 29, 0.3);
}

/* Disable focus outline */
.pagination .page-link:focus, .glass-btn:focus {
    box-shadow: none;
}


.review-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Premium Table Styles */
.glass-table-premium {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}

.glass-thead-premium {
    background: rgba(149, 224, 29, 0.08) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-thead-premium th {
    padding: 18px 24px !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--flashcash-accent) !important;
    border-bottom: 1px solid rgba(149, 224, 29, 0.2) !important;
}

.glass-thead-premium th:first-child {
    border-top-left-radius: 12px;
}

.glass-thead-premium th:last-child {
    border-top-right-radius: 12px;
}

.glass-row-premium {
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-row-premium:hover {
    background: rgba(255, 255, 255, 0.03);
}

.glass-td-premium {
    padding: 20px 24px !important;
    font-size: 16px;
    color: #FFFFFF;
    vertical-align: middle;
}

.glass-table-premium tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.glass-table-premium tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}
/* ============================================
   Payment View Styles
   ============================================ */
.glass-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
}

.btn-cancel-glass {
    background: transparent !important;
    border: 1px solid rgba(220, 53, 69, 0.5) !important;
    color: #DC3545 !important;
    border-radius: 8px !important;
    padding: 6px 16px !important;
    font-size: 14px !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    height: fit-content;
}

.btn-cancel-glass:hover {
    background: rgba(220, 53, 69, 0.1) !important;
    border-color: #DC3545 !important;
}

.qrcode-box {
    border: 1px solid var(--flashcash-accent);
    border-radius: 16px;
    padding: 12px;
    display: inline-block;
}

.copy-wrapper {
    position: relative;
    width: 100%;
}

.copy-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 12px 45px 12px 16px !important;
    color: #FFFFFFE5 !important;
    width: 100%;
    cursor: default;
}

.copy-input.copied {
    border-color: #95E01D !important;
    box-shadow: 0 0 0 2px rgba(149, 224, 29, 0.2) !important;
}

.copy-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='9' width='13' height='13' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.copy-icon:hover {
    opacity: 0.9;
}

.btn-payment-check {
    background: #95E01D !important;
    border: none !important;
    color: #000 !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    padding: 14px 24px !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.btn-payment-check:hover {
    background: #a8f534 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(149, 224, 29, 0.3);
}

.merchant-description {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.merchant-subtext {
    font-size: 13px;
    opacity: 0.4;
    margin-top: 20px;
}

.w-max-400 {
    max-width: 700px !important;
}
