/* Results Entry Modal - Full Screen */
.results-entry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-entry-container {
    width: 95vw;
    height: 95vh;
    background: white;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.results-entry-header {
    padding: 20px 30px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-entry-header h2 {
    margin: 0 0 5px 0;
    font-size: 24px;
}

.results-entry-header p {
    margin: 0;
    color: #6c757d;
}

.btn-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6c757d;
}

.score-summary {
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.team-score {
    text-align: center;
}

.team-score h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.team-score .score {
    font-size: 48px;
    font-weight: bold;
}

.team-score .points {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 5px;
}

.vs {
    font-size: 24px;
    font-weight: bold;
    opacity: 0.8;
}

.rink-matches {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.rink-match {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: move;
}

.rink-match.dragging {
    opacity: 0.5;
}

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

.rink-number {
    font-weight: 700;
    font-size: 16px;
    color: #667eea;
}

.btn-drag {
    background: none;
    border: none;
    cursor: grab;
    color: #6c757d;
}

.rink-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
}

.team-rink {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    min-height: 150px;
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.player-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.player-item .position {
    background: #e7f0ff;
    color: #667eea;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.player-item .name {
    font-weight: 600;
}

.btn-add-players {
    width: 100%;
    padding: 15px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 6px;
    cursor: pointer;
    color: #6c757d;
}

.btn-add-players:hover {
    background: #e9ecef;
    border-color: #667eea;
    color: #667eea;
}

.score-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.score-input input {
    width: 80px;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: 8px;
}

.score-input input:focus {
    outline: none;
    border-color: #667eea;
}

.score-input span {
    font-size: 24px;
    font-weight: bold;
    color: #6c757d;
}

.results-entry-footer {
    padding: 20px 30px;
    border-top: 2px solid #e9ecef;
    display: flex;
    justify-content: space-between;
}
