body.modal-open {
    overflow-y: scroll;
}

/* About Modal */
.about-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%; /* Adjust size */
    max-width: 800px;
    max-height: 80%;
    background-color: rgba(18, 2, 26, 0.835); /* Match jukebox theme */
    border: 2px solid #0bfcdc6f; /* Glow border */
    border-radius: 10px;
    z-index: 1500; /* Higher than existing elements */
    box-shadow: 0 0 20px rgba(255, 251, 0, 0.746);
    padding: 20px;
    color: #ffff6caa;
    text-align: center;
    font-family: Comic Sans MS;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px;
    overflow-y: scroll;

}

.about-modal h1,
.about-modal h4 {
    color: #96f7e5;
    margin: 0 0 10px;
}
.about-modal h2 {
    color: #0bc4fc9a;
    margin: 0 0 10px;
}

.about-modal a {
    color: #f4fc0b82;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.about-modal a:hover {
    color: #21bc69c5;
}

.about-modal .close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #96f7e5;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.about-modal .close-button:hover {
    transform: scale(1.2);
}

/* Question Mark Button */
.question-mark-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.8);
    color: rgba(11, 252, 252, 0.35);
    font-size: 26px;
    border: 2px solid #ec0bfc4c;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(236, 11, 252, 0.5);
    cursor: pointer;
    z-index: 1500;
    transition: all 0.3s ease-in-out;
}

.question-mark-button:hover {
    background-color: rgba(250, 217, 50, 0.732);
    color: #ae00ff74;
    box-shadow: 0 0 20px rgba(250, 217, 50, 0.732);
    border: 2px double rgba(11, 252, 252, 0.35);

}

.jukebox-home-link {
    color: #01f9d8cc;
    padding: 5px 10px;
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    border: 2px solid #fce00ba4;
    border-radius: 10px;
}

.jukebox-home-link:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: #01f9d8cc;
    border: 2px solid #01f9d8cc;
}

.hidden {
    display: none !important; 
    pointer-events: none; /* Disable interaction */

}
/* General Table Styling */
#tokens-table {
    width: 100%;
    margin: auto;
    padding: 10px;
    border-collapse: collapse;
    background-color: rgba(28, 3, 41, 0.9);
    border: 2px solid #0bfcdc6f;
    box-shadow: 0 0 20px rgba(255, 251, 0, 0.746), 0 0 10px rgba(11, 252, 252, 0.35);
    color: #96f7e5;
    font-family: Comic Sans MS, sans-serif;
    border-radius: 10px;
    overflow: hidden;
    table-layout: fixed; /* Ensures uniform column widths */
}

/* Header Styling */
#tokens-table th {
    background-color: rgba(11, 252, 252, 0.2);
    color: rgba(255, 251, 0, 0.746);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
}

/* Table Body Styling */
#tokens-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    padding: 10px;
    text-align: center; /* Center-align content */
}

/* Token Details Alignment */
.token-details {
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.token-icon {
    width: 35px;
    height: 35px;
}

.token-symbol {
    font-weight: bold;
    color: #01f9d8ad;
}

.token-name {
    font-weight: normal;
    color: #01f9d8ad;
}

.collect-fees-btn {
    background-color: rgba(22, 2, 32, 0.756); /* Match jukebox theme */
    border: 2px solid #0bfcdc6f; /* Glow border */
    color: #ffff6caa; /* Text color to match theme */
    font-family: Comic Sans MS, sans-serif; /* Use consistent font */
    font-size: 14px; /* Adjust font size */
    padding: 10px 20px; /* Add padding for better button appearance */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(255, 251, 0, 0.746), 0 0 5px rgba(11, 252, 252, 0.35); /* Match box shadows */
    cursor: pointer; /* Show pointer cursor on hover */
    transition: all 0.3s ease-in-out; /* Smooth hover transition */
}

.collect-fees-btn:hover {
    background-color: rgba(250, 217, 50, 0.732); /* Hover background color */
    color: #ae00ff74; /* Hover text color */
    box-shadow: 0 0 20px rgba(250, 217, 50, 0.732), 0 0 10px rgba(11, 252, 252, 0.5); /* Enhanced hover shadow */
    transform: scale(1.05); /* Slight scaling effect */
}
.collect-album-fees-btn {
    margin: 10px;
    background-color: rgba(22, 2, 32, 0.756); /* Match jukebox theme */
    border: 2px solid #0bfcdc6f; /* Glow border */
    color: #ffff6caa; /* Text color to match theme */
    font-family: Comic Sans MS, sans-serif; /* Use consistent font */
    font-size: 14px; /* Adjust font size */
    padding: 10px 20px; /* Add padding for better button appearance */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 0 10px rgba(255, 251, 0, 0.746), 0 0 5px rgba(11, 252, 252, 0.35); /* Match box shadows */
    cursor: pointer; /* Show pointer cursor on hover */
    transition: all 0.3s ease-in-out; /* Smooth hover transition */
}
.acc-collect-album-fees {
    margin: 10px;
}


.collect-album-fees-btn:hover {
    background-color: rgba(250, 217, 50, 0.732); /* Hover background color */
    color: #ae00ff74; /* Hover text color */
    box-shadow: 0 0 20px rgba(250, 217, 50, 0.732), 0 0 10px rgba(11, 252, 252, 0.5); /* Enhanced hover shadow */
    transform: scale(1.05); /* Slight scaling effect */
}
.token-balance {
    color: #01f9d8ad;
}
/* Add hover effect */
.highlight {
    color: #04fb73df;
    transform: scale(1.5) !important; /* Slightly scale up the balance for emphasis */
}