/* Gra Terenowa - Style frontendowe */

.gra-terenowa-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gra-terenowa-game {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gra-terenowa-game h2 {
    margin-top: 0;
    color: #333;
}

.gra-terenowa-task {
    background: #f9f9f9;
    border-left: 4px solid #0073aa;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.gra-terenowa-task-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.gra-terenowa-task-points {
    color: #0073aa;
    font-weight: bold;
}

.gra-terenowa-team {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.gra-terenowa-scoreboard {
    width: 100%;
    border-collapse: collapse;
}

.gra-terenowa-scoreboard th,
.gra-terenowa-scoreboard td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.gra-terenowa-scoreboard th {
    background: #0073aa;
    color: #fff;
}

.gra-terenowa-scoreboard tr:hover {
    background: #f5f5f5;
}

.gra-terenowa-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.gra-terenowa-button:hover {
    background: #005177;
    color: #fff;
}

.gra-terenowa-status {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.9em;
    font-weight: bold;
}

.gra-terenowa-status.active {
    background: #46b450;
    color: #fff;
}

.gra-terenowa-status.draft {
    background: #ffb900;
    color: #fff;
}

.gra-terenowa-status.finished {
    background: #999;
    color: #fff;
}
