/* /Components/PhantomWalletAdvanced.razor.rz.scp.css */
/* Ensure this file is named PhantomWalletAdvanced.razor.css if your razor file is PhantomWalletAdvanced.razor */
/* Styles will be automatically scoped to this component */

.wallet-container[b-kg6l9eq248] {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px; /* Added some padding for overall container */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* Example font stack */
}

/* Phantom Modal Backdrop (covers whole screen) */
.phantom-modal-backdrop[b-kg6l9eq248] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999; /* High enough to cover everything */
}

/* Phantom Modal (centered inside the backdrop) */
.phantom-modal[b-kg6l9eq248] {
    width: 380px;
    max-width: 90%;
    background: #1c1c27;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
    color: #e0e0e0;
    overflow: hidden;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
    opacity: 0;
    transform: scale(0.95);
}

/* Show modal (add this class dynamically) */
.phantom-modal.show[b-kg6l9eq248] {
    opacity: 1;
    transform: scale(1);
}


.phantom-modal-content[b-kg6l9eq248] {
    display: flex;
    flex-direction: column;
}

.phantom-modal-header[b-kg6l9eq248] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px; /* Adjusted padding */
    border-bottom: 1px solid #303040; /* Softer border */
}

    .phantom-modal-header h5[b-kg6l9eq248] {
        margin: 0;
        font-size: 20px; /* Slightly larger title */
        font-weight: 600;
        color: #ffffff; /* Ensure title is white */
    }

.phantom-close-button[b-kg6l9eq248] {
    background: none;
    border: none;
    color: #a0a0b0; /* Softer close button color */
    font-size: 28px; /* Larger close icon */
    cursor: pointer;
    padding: 0; /* Remove padding if not needed */
    line-height: 1; /* Ensure proper vertical alignment */
}

    .phantom-close-button:hover[b-kg6l9eq248] {
        color: #ffffff;
    }

.phantom-modal-body[b-kg6l9eq248] {
    padding: 24px; /* Consistent padding */
}

.phantom-modal-footer[b-kg6l9eq248] {
    display: flex;
    padding: 20px 24px; /* Adjusted padding */
    border-top: 1px solid #303040; /* Softer border */
    justify-content: space-between; /* Default, can be flex-end */
    background-color: #222230; /* Slight differentiation for footer */
}

.btn-cancel[b-kg6l9eq248], .btn-approve[b-kg6l9eq248] {
    border: none;
    border-radius: 8px;
    padding: 12px 20px; /* Larger buttons */
    cursor: pointer;
    font-weight: 600;
    font-size: 15px; /* Slightly larger text */
    transition: background-color 0.2s ease;
}

.btn-cancel[b-kg6l9eq248] {
    background: #38384a;
    color: #e0e0e0;
}

    .btn-cancel:hover[b-kg6l9eq248] {
        background: #4a4a5c;
    }

.btn-approve[b-kg6l9eq248] {
    background: #5e35b1; /* Phantom purple adjusted */
    color: white;
}

    .btn-approve:hover[b-kg6l9eq248] {
        background: #673ab7; /* Lighter purple on hover */
    }

    .btn-approve:disabled[b-kg6l9eq248] {
        background: #4a2c80; /* Darker when disabled */
        color: #707080;
        cursor: not-allowed;
    }

/* Payment Details */
.payment-details[b-kg6l9eq248] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.payment-icon[b-kg6l9eq248] {
    font-size: 32px; /* Slightly smaller icon in bubble */
    background: #5e35b1; /* Consistent purple */
    width: 64px; /* Adjusted size */
    height: 64px; /* Adjusted size */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px; /* Increased spacing */
    color: white; /* Ensure icon is visible */
}

.payment-icon i[b-kg6l9eq248] {
    line-height: 0; /* Helps center some icons */
}


.payment-amount[b-kg6l9eq248] {
    font-size: 28px; /* Larger amount */
    font-weight: 700;
    margin-bottom: 6px; /* Adjusted spacing */
    color: #ffffff;
}

.payment-usd[b-kg6l9eq248] {
    color: #a0a0b0; /* Softer USD color */
    margin-bottom: 24px; /* Increased spacing */
    font-size: 15px;
}

.recipient-section[b-kg6l9eq248] {
    width: 100%;
    background: #2a2a3a; /* Consistent with original */
    border-radius: 10px; /* Softer corners */
    padding: 14px 16px; /* Adjusted padding */
    margin-bottom: 24px; /* Increased spacing */
}

.recipient-label[b-kg6l9eq248] {
    color: #a0a0b0; /* Softer label color */
    font-size: 13px; /* Smaller label */
    margin-bottom: 8px; /* Increased spacing */
    text-align: left;
}

.recipient-address[b-kg6l9eq248] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.address-truncated[b-kg6l9eq248] {
    font-family: "SF Mono", "Consolas", "Menlo", monospace; /* Monospaced font stack */
    font-size: 15px; /* Slightly larger address */
    color: #e0e0e0;
}

.copy-btn[b-kg6l9eq248] {
    background: none;
    border: none;
    color: #a0a0b0;
    cursor: pointer;
    font-size: 18px; /* Larger copy icon */
}

.copy-btn:hover[b-kg6l9eq248] {
    color: #ffffff;
}

.wallet-balance[b-kg6l9eq248],
.network-fee[b-kg6l9eq248] {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px; /* Increased spacing */
    color: #a0a0b0; /* Softer color */
    font-size: 14px;
}

    .wallet-balance span:last-child[b-kg6l9eq248],
    .network-fee span:last-child[b-kg6l9eq248] {
        font-weight: 500;
        color: #e0e0e0; /* Slightly brighter value */
    }

/* Ensure Bootstrap icons are loaded if you use classes like bi-etc */
/* You might need to add: @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css"); */
/* to your main app's CSS or index.html if not already available. */

/* Additional styling for alerts and buttons outside the modal if needed */
.alert[b-kg6l9eq248] {
    border-radius: 8px; /* Softer corners for alerts */
}

.btn[b-kg6l9eq248] {
    border-radius: 8px; /* Softer corners for general buttons */
}


.sol-input-wrapper[b-kg6l9eq248] {
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}

    .sol-input-wrapper label[b-kg6l9eq248] {
        color: #a0a0b0;
        font-size: 13px;
        margin-bottom: 6px;
    }

.sol-input[b-kg6l9eq248] {
    appearance: textfield;
    -moz-appearance: textfield;
    -webkit-appearance: none;
    background: #2a2a3a;
    color: #e0e0e0;
    border: 1px solid #38384a;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: "SF Mono", "Consolas", "Menlo", monospace;
    width: 100%;
    box-sizing: border-box;
}

    .sol-input[b-kg6l9eq248]::-webkit-inner-spin-button,
    .sol-input[b-kg6l9eq248]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .sol-input:focus[b-kg6l9eq248] {
        outline: none;
        border-color: #5e35b1;
        box-shadow: 0 0 0 2px rgba(94, 53, 177, 0.3);
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-bca5c2nh3b] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-bca5c2nh3b] {
    flex: 1;
}

.sidebar[b-bca5c2nh3b] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-bca5c2nh3b] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-bca5c2nh3b]  a, .top-row[b-bca5c2nh3b]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-bca5c2nh3b]  a:hover, .top-row[b-bca5c2nh3b]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-bca5c2nh3b]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-bca5c2nh3b] {
        justify-content: space-between;
    }

    .top-row[b-bca5c2nh3b]  a, .top-row[b-bca5c2nh3b]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-bca5c2nh3b] {
        flex-direction: row;
    }

    .sidebar[b-bca5c2nh3b] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-bca5c2nh3b] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-bca5c2nh3b]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-bca5c2nh3b], article[b-bca5c2nh3b] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-rp30r6jysn] {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
}

.top-row[b-rp30r6jysn] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-rp30r6jysn] {
    font-size: 1.1rem;
    color: white !important;
}

.nav-scrollable[b-rp30r6jysn] {
    background-color: #343a40;
    min-height: 100vh;
    padding: 0;
}

.nav-item[b-rp30r6jysn] {
    font-size: 0.9rem;
}

/* Base nav-link styles for both regular links and buttons */
.nav-link[b-rp30r6jysn] {
    color: #d7d7d7 !important;
    border-radius: 4px;
    margin: 2px 0;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: all 0.2s ease;
}

.nav-link:hover[b-rp30r6jysn] {
    background-color: rgba(255,255,255,0.1);
    color: white !important;
}

.nav-link.active[b-rp30r6jysn] {
    background-color: rgba(255,255,255,0.25);
    color: white !important;
}

/* Icon spacing */
.nav-link i[b-rp30r6jysn],
.nav-link svg[b-rp30r6jysn] {
    margin-right: 0.75rem;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Collapse toggle specific styles */
.collapse-toggle[b-rp30r6jysn] {
    justify-content: space-between;
    cursor: pointer;
}

.collapse-toggle:focus[b-rp30r6jysn] {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Chevron animation */
.chevron-icon[b-rp30r6jysn] {
    transition: transform 0.2s ease;
    margin-left: auto;
}

.chevron-icon.rotated[b-rp30r6jysn],
.collapse-toggle[aria-expanded="true"] .chevron-icon[b-rp30r6jysn] {
    transform: rotate(180deg);
}

/* Submenu styles */
.submenu[b-rp30r6jysn] {
    background-color: rgba(0,0,0,0.2);
    padding: 0.25rem 0;
    border-left: 2px solid rgba(255,255,255,0.1);
    margin-left: 1rem;
}

.submenu .nav-link[b-rp30r6jysn] {
    padding-left: 2.5rem;
    font-size: 0.85rem;
}

.submenu .nav-item[b-rp30r6jysn] {
    margin: 0;
}

/* Responsive behavior */
@media (min-width: 641px) {
    .navbar-toggler[b-rp30r6jysn] {
        display: none;
    }

    .nav-scrollable.collapse[b-rp30r6jysn] {
        display: block !important;
    }

    .nav-scrollable[b-rp30r6jysn] {
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* Fix for button reset in Bootstrap */
.nav-link.btn[b-rp30r6jysn] {
    font-weight: normal;
    font-size: 0.9rem;
}
/* /Pages/Home.razor.rz.scp.css */
.home-container[b-e0u9e08jkg] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.loading-section[b-e0u9e08jkg] {
    text-align: center;
    padding: 3rem;
}

.spinner[b-e0u9e08jkg] {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin-b-e0u9e08jkg 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-e0u9e08jkg {
     0% { transform: rotate(0deg); }
     100% { transform: rotate(360deg); }
 }

.error-section[b-e0u9e08jkg] {
    text-align: center;
    padding: 3rem;
    background-color: #fee;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
}

.error-icon[b-e0u9e08jkg] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-message[b-e0u9e08jkg] {
    color: #e74c3c;
    font-weight: 500;
    margin-bottom: 1rem;
}

.retry-button[b-e0u9e08jkg] {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.retry-button:hover[b-e0u9e08jkg] {
    background-color: #c0392b;
}

.success-section[b-e0u9e08jkg] {
    text-align: center;
}

.success-icon[b-e0u9e08jkg] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.data-card[b-e0u9e08jkg] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.billboard-card[b-e0u9e08jkg] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.store-card[b-e0u9e08jkg] {
    background: linear-gradient(135deg, #4ecdc4 0%, #26a0da 100%);
}

.data-card h2[b-e0u9e08jkg] {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.data-grid[b-e0u9e08jkg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.data-item[b-e0u9e08jkg] {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.data-item strong[b-e0u9e08jkg] {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.data-item span[b-e0u9e08jkg] {
    font-size: 1.1rem;
    font-weight: 500;
}

.media-type[b-e0u9e08jkg] {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem !important;
}

.token[b-e0u9e08jkg] {
    font-family: monospace;
    font-size: 0.9rem !important;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.redirect-section[b-e0u9e08jkg] {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.countdown-circle[b-e0u9e08jkg] {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: pulse-b-e0u9e08jkg 1s ease-in-out infinite alternate;
}

.countdown-number[b-e0u9e08jkg] {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

@keyframes pulse-b-e0u9e08jkg {
     0% { transform: scale(1); }
     100% { transform: scale(1.05); }
 }

.redirect-button[b-e0u9e08jkg] {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.redirect-button:hover[b-e0u9e08jkg] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.redirect-button:active[b-e0u9e08jkg] {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .home-container[b-e0u9e08jkg] {
        padding: 1rem;
    }

    .data-grid[b-e0u9e08jkg] {
        grid-template-columns: 1fr;
    }

    .countdown-circle[b-e0u9e08jkg] {
        width: 80px;
        height: 80px;
    }

    .countdown-number[b-e0u9e08jkg] {
        font-size: 1.5rem;
    }
}
/* /Pages/Store/ViewBookingStoresPage.razor.rz.scp.css */
/* BookingStores Component Styles */

/* Table Styles */
.table-row-even[b-gtuvrio0ri] {
    background-color: #f8f9fa;
}

.table-row-odd[b-gtuvrio0ri] {
    background-color: #ffffff;
}

.table-row-even:hover[b-gtuvrio0ri],
.table-row-odd:hover[b-gtuvrio0ri] {
    background-color: #e3f2fd !important;
    transition: background-color 0.2s ease-in-out;
}

/* Custom table responsiveness */
.table-responsive[b-gtuvrio0ri] {
    border-radius: 0.375rem;
}

.table thead th[b-gtuvrio0ri] {
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table tbody td[b-gtuvrio0ri] {
    vertical-align: middle;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #f1f3f4;
}

/* Card Styles */
.card[b-gtuvrio0ri] {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
}

.card-header[b-gtuvrio0ri] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    padding: 1.25rem;
}

.card-footer[b-gtuvrio0ri] {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 0.75rem 1.25rem;
}

/* Button Styles */
.btn-outline-secondary:hover[b-gtuvrio0ri] {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.dropdown-menu[b-gtuvrio0ri] {
    border: 1px solid #e9ecef;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.375rem;
    min-width: 200px;
}

.dropdown-item[b-gtuvrio0ri] {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.15s ease-in-out;
}

.dropdown-item:hover[b-gtuvrio0ri] {
    background-color: #f8f9fa;
    color: #495057;
}

.dropdown-item i[b-gtuvrio0ri] {
    width: 16px;
    text-align: center;
}

/* Badge Styles */
.badge[b-gtuvrio0ri] {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.375em 0.75em;
}

/* Modal Styles */
.modal-content[b-gtuvrio0ri] {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.modal-header[b-gtuvrio0ri] {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    padding: 1.25rem;
}

.modal-body[b-gtuvrio0ri] {
    padding: 1.5rem;
}

.modal-footer[b-gtuvrio0ri] {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    padding: 1rem 1.5rem;
}

/* Form Styles */
.form-label[b-gtuvrio0ri] {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control:focus[b-gtuvrio0ri] {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Loading and Error States */
.spinner-border[b-gtuvrio0ri] {
    width: 3rem;
    height: 3rem;
}

.alert[b-gtuvrio0ri] {
    border: none;
    border-radius: 0.5rem;
}

/* Empty State */
.display-1[b-gtuvrio0ri] {
    font-size: 4rem;
    opacity: 0.3;
}

/* Search Input */
.input-group-text[b-gtuvrio0ri] {
    background-color: #f8f9fa;
    border-color: #ced4da;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card-header .row[b-gtuvrio0ri] {
        flex-direction: column;
        gap: 1rem;
    }

    .table-responsive[b-gtuvrio0ri] {
        font-size: 0.875rem;
    }

    .dropdown-menu[b-gtuvrio0ri] {
        min-width: 180px;
    }

    .modal-dialog[b-gtuvrio0ri] {
        margin: 0.5rem;
    }

    .btn-sm[b-gtuvrio0ri] {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .table thead[b-gtuvrio0ri] {
        display: none;
    }

    .table tbody td[b-gtuvrio0ri] {
        display: block;
        text-align: left;
        border: none;
        padding: 0.5rem;
    }

    .table tbody td[b-gtuvrio0ri]:before {
        content: attr(data-label) ": ";
        font-weight: bold;
        color: #495057;
    }

    .table tbody tr[b-gtuvrio0ri] {
        border: 1px solid #dee2e6;
        border-radius: 0.375rem;
        margin-bottom: 1rem;
        display: block;
        padding: 0.5rem;
    }
}

/* Animation */
@keyframes fadeIn-b-gtuvrio0ri {
     from {
         opacity: 0;
         transform: translateY(10px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

.table tbody tr[b-gtuvrio0ri] {
    animation: fadeIn-b-gtuvrio0ri 0.3s ease-in-out;
}

/* Custom Scrollbar */
.table-responsive[b-gtuvrio0ri]::-webkit-scrollbar {
    height: 8px;
}

.table-responsive[b-gtuvrio0ri]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.table-responsive[b-gtuvrio0ri]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.table-responsive[b-gtuvrio0ri]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
