/* ============================================================
   CLOUD MAP LAYOUT
============================================================ */

body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.cloud-map-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: url('/assets/img/cloud/cloud-map.jpg');
    opacity: 0.25;
    z-index: 1;
}

#cloudMap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* ============================================================
   TOOLBELT
============================================================ */

.cloud-map-tools {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    gap: 10px;
}

.tool-btn {
    padding: 10px 16px;
    background: rgba(0,0,0,0.7);
    color: #f7d354;
    border: 2px solid #f7d354;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.tool-btn:hover {
    background: rgba(0,0,0,0.9);
}
