﻿/* GameView CSS */

/* Background body styles */
body {
    margin: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-color: #000; /* fallback color */
}

/* Container styles */
.game-container {
    opacity: 0.9;
    padding: 0 1rem;
}

.game-header-container {
    opacity: 0.9;
}

/* Game header styles */
.game-header-content {
    display: inline-block;
}

.team-photo-container {
    background-color: white;
    position: relative;
    float: left;
    border: 2px solid black;
    margin: 10px;
    border-radius: 15px;
    padding: 5px;
}

.team-photo {
    position: relative;
    float: left;
    width: inherit;
    height: inherit;
}

    .team-photo img {
        height: 125px;
        width: 150px;
        object-fit: contain;
    }

.game-info-container {
    background-color: white;
    position: relative;
    float: left;
    width: 675px;
    margin: 10px;
    padding: 5px;
}

.game-info-table {
    width: 100%;
}

.team-name {
    font-size: 22px;
    text-align: center;
}

.team-score {
    text-align: center;
}

.vs-separator {
    font-size: 22px;
    text-align: center;
}

.game-location {
    text-align: center;
}

.game-date {
    text-align: center;
}

.shootout-results {
    text-align: center;
}

/* Box score styles */
.box-score-container {
    display: flex;
    align-items: center;
}

.box-score-table {
    width: 100%;
}

.box-score-inner-table {
    /* Common styles for inner tables */
}

/* Team statistics styles */
.team-stat-data-sm {
    font-family: Arial;
    font-size: 11px;
    padding: 2px 4px;
}

.team-stat-data {
    font-family: Arial;
    font-size: 13px;
    padding: 4px 6px;
}

    .team-stat-data.fw-bold,
    .team-stat-data-sm.fw-bold {
        font-weight: bold;
    }

    .team-stat-data.text-center,
    .team-stat-data-sm.text-center {
        text-align: center;
    }

/* Red line header */
.redline-header {
    border: 1px solid #dc3545;
    margin: 2px 0;
}

/* Stats table borders */
.stats-table-border {
    border: 1px solid gray;
}

/* Alternating row colors */
.row-white {
    background-color: white;
}

.row-cornsilk {
    background-color: cornsilk;
}

/* Tennis specific styles */
.tennis-match-table {
    width: 450px;
}

.tennis-player-cell {
    width: 185px;
}

.tennis-set-cell {
    width: 40px;
}

.tennis-set-superscript {
    font-size: 10px;
    vertical-align: super;
}

.tennis-team-image {
    height: 40px;
    width: 40px;
    object-fit: contain;
    margin-right: 3px;
}

/* Ski results styles */
.ski-results-container {
    opacity: 0.9;
}

.ski-event-table {
    width: 100%;
    margin-bottom: 1rem;
}

.ski-team-emblem {
    max-height: 30px;
}

/* Golf results styles */
.golf-results-table {
    /* Specific golf table styles */
}

/* Field Hockey specific styles */
.field-hockey-corners-table {
    margin-bottom: 1rem;
}

.field-hockey-corners-header {
    width: 250px;
}

.field-hockey-shots-header {
    width: 80px;
}

/* Lacrosse specific styles */
.lacrosse-extra-man-table {
    margin-bottom: 0.5rem;
}

/* Print button styles */
.print-button-container {
    text-align: right;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .game-info-container {
        width: 100%;
        margin: 5px;
    }

    .team-photo img {
        height: 80px;
        width: 100px;
    }

    .tennis-match-table {
        width: 100%;
    }
}body {
}
