/* Button to reopen game end modal in game-status area */
.game-status-reopen-btn {
    margin-top: 12px !important;
    padding: 10px 20px !important;
    background: white !important;
    border: 2px solid !important;
    border-radius: 6px !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    display: inline-block !important;
    transition: all 0.2s !important;
}

.game-status.success .game-status-reopen-btn {
    color: #28a745 !important;
    border-color: #28a745 !important;
}

.game-status.success .game-status-reopen-btn:hover {
    background: #28a745 !important;
    color: white !important;
}

.game-status.error .game-status-reopen-btn {
    color: #dc3545 !important;
    border-color: #dc3545 !important;
}

.game-status.error .game-status-reopen-btn:hover {
    background: #dc3545 !important;
    color: white !important;
}

.game-status.info .game-status-reopen-btn {
    color: #0c5460 !important;
    border-color: #0c5460 !important;
}

.game-status.info .game-status-reopen-btn:hover {
    background: #0c5460 !important;
    color: white !important;
}

@media (max-width: 768px) {
    .game-status-reopen-btn {
        font-size: 0.85rem !important;
        padding: 8px 16px !important;
    }
}
