/* PvP Match Modal Styles */
.modal .modal-content {
    background-color: #141518;
    color: #fafafa;
    border: 1px solid #2a2c38;
    border-radius: 8px;
}

.modal .modal-header {
    border-bottom: 1px solid #2a2c38;
    background-color: #141518;
    padding: 1rem;
}

.modal .modal-title {
    color: #fafafa;
    font-weight: 600;
}

.modal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.75;
}

.modal .btn-close:hover {
    opacity: 1;
}

.modal .modal-body {
    background-color: #141518;
    padding: 1rem;
}

.modal .pvp-predictions {
    background-color: #2a2c38;
    border-radius: 8px;
    padding: 1rem;
}

.modal .prediction-player1,
.modal .prediction-player2 {
    background-color: #141518;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #2a2c38;
}

.modal .prediction-player2 {
    margin-bottom: 0;
}

.modal .player-name {
    color: #fafafa;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.modal .predictions-list {
    margin-top: 0.5rem;
}

.modal .prediction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid #2a2c38;
    color: #fafafa;
}

.modal .prediction-item:last-child {
    border-bottom: none;
}

.modal .prediction-points {
    color: #bbf246;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(187, 242, 70, 0.1);
}

/* Animation */
.modal.fade .modal-dialog {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
    opacity: 1;
}