html, body, #cesiumContainer {
    font-family: 'Arial', sans-serif;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}


#cesiumContainer {
    position: relative;
    width: 100%;
    height: 100%;
}

#logo-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

#logo {
    max-width: 200px;
    width: auto;
    height: auto;
}

@media (max-width: 600px) {
    #logo {
        max-width: 160px;
    }
}

.cesium-widget-credits {
    display: none !important;
}
#trophyButton {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: url('trophy.png') no-repeat center center / cover;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 60%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s;
    font-family: Arial, sans-serif;
    color: #333;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    float: right;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

.update-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#lastUpdate, #countdown {
    margin: 0;
    font-size: 16px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #4CAF50;
    color: white;
}

tr:hover {
    background-color: #f1f1f1;
}

tr:first-child {
    background-color: #FFD700;
    font-weight: bold;
    color: #000;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        padding: 10px;
    }

    .update-container {
        flex-direction: column;
    }

    #lastUpdate, #countdown {
        text-align: center;
        margin-bottom: 10px;
    }

    th, td {
        padding: 8px;
        font-size: 14px;
    }
}