.modal-content h2 {
    color: white;
}

.modal-content h4 {
    color: white;
}

#track-token-selection-modal,
#token-selection-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-height: 80%;
    background-color: black;
    border: 2px solid white;
    border-radius: 10px;
    z-index: 1500;
    padding: 20px;
    color: white;
    text-align: center;
    font-family: Arial, sans-serif;
    overflow-y: auto;
}

.track-list,
.token-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

#token-list {
    border: 2px solid white;
}

.track-item,
.token-item {
    padding: 10px;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: black;
    color: white;
}

.track-item:hover,
.token-item:hover {
    background-color: white;
    color: black;
    transform: none;
}

.track-item.selected,
.token-item.selected {
    background-color: white;
    color: black;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
    background-color: black;
    color: white;
    transition: all 0.3s ease;
}

button:hover {
    background-color: white;
    color: black;
}

/* Overlay Background */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1400;
    display: none;
}

/* Show overlay when active */
.modal-overlay.active {
    display: block;
}

/* Modal Content */
.modal-content {
    position: relative;
    z-index: 1500;
}

