.geo-kviz-container {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    color: #333;
    box-sizing: border-box;
}

.geo-kviz-title {
    font-size: 2rem;
    color: #F26824;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.geo-kviz-description {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.geo-kviz-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.5rem 0;
    color: #444;
}

.geo-kviz-timer,
.geo-kviz-progress {
    font-weight: bold;
    margin: 0.5rem;
}

.geo-kviz-timer span {
    color: #F26824;
    font-size: 20px;
    font-weight: 500;
}

.geo-kviz-progress span {
    color: #28a745;
    font-size: 20px;
    font-weight: 500;
}

.geo-kviz-input {
    width: 100%;
    padding: 0.7rem;
    border: 2px solid #F26824;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    outline: none;
    box-sizing: border-box;
}

.geo-kviz-input:focus {
    border-color: #d4571c;
}

.geo-kviz-button {
    background-color: #F26824;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.geo-kviz-button:hover {
    background-color: #d4571c !important;
}

.geo-kviz-guessed-list {
    margin-top: 1.5rem;
    text-align: left;
    max-height: 250px;
    overflow-y: auto;
    border-top: 1px solid #ccc;
    padding-top: 1rem;
    font-size: 0.95rem;
}

.geo-kviz-map {
    margin-top: 2rem;
    max-width: 800px;
    height: auto;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

/* Države koje su pogođene */
.guessed {
    fill: #32CD32 !important; /* svetlo zelena boja za pogođene zemlje */
    stroke: #ffffff;
    stroke-width: 0.5;
}

#resultsContainer {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-size: 13px;
    color: #333;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#resultsContainer h2,
#resultsContainer h3 {
    margin-top: 0;
    color: #222;
}

#resultSummary {
    margin-bottom: 15px;
}

#missedCountries {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    font-style: italic;
}

#missedCountries span {
    background-color: #f1f1f1;
    border-radius: 4px;
    padding: 4px 8px;
    color: #555;
}

#restartGame {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 14px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#restartGame:hover {
    background-color: #45a049;
}



/* Responsive dizajn */
@media (max-width: 768px) {
    .geo-kviz-title {
        font-size: 1.5rem;
    }

    .geo-kviz-description {
        font-size: 1rem;
    }

    .geo-kviz-info {
        flex-direction: column;
        align-items: center;
    }

    .geo-kviz-button {
        font-size: 1rem;
    }

    .geo-kviz-input {
        font-size: 0.95rem;
    }
}
