body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem;
    background: #1a1a1a; /* Dark grey container background */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1); /* Subtle white shadow */
}

/* Buttons and Input */
.button-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}
.mobile-wallet-connect-button {
    display: none;
}

.refresh-button,
.wallet-connect-button
 {
    padding: 10px 15px;
    font-size: 14px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}


.buy-button,
.burn-button,
.sale-button {
    padding: 10px 10px;
    font-size: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 5px;
    transition: background-color 0.3s ease;
}

.amount-input {
    width: 100px;
    padding: 5px;
    margin-right: 5px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
}

/* Headings */
h1,
h2 {
    text-align: center;
    color: #fff; /* White headings */
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    color: #fff; /* White table text */
}

th,
td {
    border: 1px solid #444; /* Subtle grey borders */
    padding: 8px;
    text-align: left;
}

th {
    background-color: #333; /* Darker background for table headers */
    color: #fff; /* White text for headers */
}

ul {
    list-style-type: none;
    padding: 0;
}

.sellers-table {
    width: 100%;
}

.spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8); /* Darker background */
    z-index: 9999;
}

.spinner-content {
    padding: 20px;
    background: black;
    border: 2px solid black; /* Add border */
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Space between lines and spinner */
}

.spinner-progress {
    width: 40px;
    height: 40px;
    border: 4px solid white; /* Border for progress indicator */
    border-top: 4px solid transparent; /* Transparent top for animation */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

