/* Layout utama */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
}

/* SIDEBAR */
#sidebar {
    width: 320px;
    height: 100vh;
    background: #003147; /* FULL BIRU TUA */
    color: white;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

/* Teks */
#sidebar h2,
#sidebar h3,
#sidebar h4,
#sidebar p {
    color: white;
}

/* HR garis */
#sidebar hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.3);
    margin: 12px 0;
}

/* BUTTON GENERIC */
button {
    background-color: #00aaff; 
    color: #003147;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background-color: #66d4ff;
}

/* BUTTON KHUSUS */
.save-button {
    background: #27ae60;
    color: white;
}

.save-button:hover {
    background: #2ecc71;
}

.cancel-button {
    background: #c0392b;
    color: white;
}

.cancel-button:hover {
    background: #e74c3c;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 10px;
}

/* INPUT */
.search-input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    margin-bottom: 10px;
    outline: none;
    background: white;
    color: #003147;
}

/* LIST FEATURE */
#feature-list div {
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    margin-bottom: 8px;
    cursor: pointer;
}

#feature-list div:hover {
    background: rgba(255,255,255,0.2);
}

/* MAP */
#map {
    position: absolute;
    top: 0;
    right: 0;
    left: 320px;
    height: 100vh;
}
