#cesiumContainer {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

#infoContainer {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 1000;
    background-color: rgba(38, 38, 38, 0.65);
    color: white;
    padding: 16px 20px;
    border-radius: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 1px solid rgba(200, 200, 200, 0.3);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    min-width: 200px;
}

.header h1 {
    margin: 0 0 15px 0;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    color: #00d4ff;
    text-shadow: 0 0 3px rgba(0, 212, 255, 0.4);
}

.clock-container {
    text-align: center;
}

.clock-label {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clock-time {
    font-size: 22px;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 3px;
    text-shadow: 0 0 3px rgba(0, 212, 255, 0.4);
    font-family: 'Courier New', monospace;
}

.clock-date {
    font-size: 14px;
    color: #ccc;
}

/* Hide default cesium toolbar and timeline */
.cesium-viewer-toolbar,
.cesium-viewer-animationContainer,
.cesium-viewer-timelineContainer,
.cesium-viewer-bottom {
    display: none !important;
}

/* Custom container for cesium navigation controls */
#navigationContainer {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Style for navigation buttons */
.nav-button {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background-color: rgba(38, 38, 38, 0.75);
    color: white;
    border: 1px solid rgba(200, 200, 200, 0.3);
    margin: 0 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.5);
}

.nav-button:hover {
    background-color: rgba(48, 48, 48, 0.9);
}