/* Stili za prikaz medsebojnih tekem */
.mutual-matches-container {
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
}

.player-row {
    cursor: pointer;
    transition: background-color 0.2s;
}

.player-row:hover {
    background-color: rgba(0,123,255,0.05);
}

.player-row.active {
    background-color: rgba(0,123,255,0.1);
}

.mutual-matches-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mutual-matches-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.stat-card {
    background-color: white;
    border-radius: 0.25rem;
    padding: 10px 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
}

.match-list {
    margin-top: 15px;
}

.match-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 0.25rem;
    margin-bottom: 8px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.match-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.match-result {
    display: flex;
    align-items: center;
    gap: 10px;
}

.match-score {
    font-weight: bold;
    font-size: 1.1rem;
}

.match-points {
    font-size: 0.85rem;
    padding: 2px 6px;
    border-radius: 3px;
}

.match-points.positive {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.match-points.negative {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.match-location {
    font-size: 0.85rem;
    color: #6c757d;
}

.win-ratio-bar {
    height: 10px;
    border-radius: 5px;
    background-color: #e9ecef;
    margin: 10px 0;
    overflow: hidden;
}

.win-ratio-progress {
    height: 100%;
    background-color: #007bff;
}

/* Akcijski gumbi nad medsebojnimi tekmami */
.mutual-matches-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.start-match-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Seznam medsebojnih tekem */
.mutual-matches-list {
    margin-top: 10px;
}

.mutual-match-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 0.25rem;
    margin-bottom: 6px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.mutual-match-item.win {
    border-left: 4px solid #28a745;
}

.mutual-match-item.loss {
    border-left: 4px solid #dc3545;
}

.mutual-match-date {
    font-size: 0.85rem;
    color: #6c757d;
    min-width: 100px;
}

.mutual-match-score {
    font-weight: bold;
    font-size: 0.95rem;
}

.mutual-match-points {
    font-size: 0.85rem;
    color: #555;
}

.mutual-matches-hidden {
    margin-top: 5px;
}

.mutual-matches-toggle-wrap {
    text-align: center;
    margin-top: 8px;
}

.mutual-matches-toggle {
    padding: 2px 10px;
    font-size: 0.85rem;
}

.mutual-matches-count-header {
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
    font-size: 0.95rem;
}
