/* Style Umum */
.header-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            rgba(135, 206, 250, 0) 0%,
            rgba(0, 255, 213, 1) 50%,
            rgba(135, 206, 250, 0) 100%);
    background-size: 200% 50%;
    animation: light-move 10s linear infinite;
    opacity: 1;
    filter: blur(1px);
    z-index: 30;
}

@keyframes light-move {
    0% {
        background-position: -50% 0;
    }

    100% {
        background-position: 150% 0;
    }
}

.info-item {
    font-size: 0.9rem;
}

/* Loader style */
.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #01f0f8ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== Elevation Canvas Modern ===== */
#elevCanvas {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(3, 35, 71, 0.95), rgba(16, 77, 139, 0.76));
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999 !important;
    pointer-events: auto;
    cursor: crosshair;
}