/* Player Options Modal Styles */
.player-options-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.player-options-modal .modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.player-options-modal .button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.player-options-modal .button:hover {
    background-color: #0069d9;
}

.player-options-modal .cancel-button {
    background-color: #6c757d;
}

.player-options-modal .cancel-button:hover {
    background-color: #5a6268;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .player-options-modal .modal-content {
        background-color: #343a40;
        color: #fff;
    }
}
