.wacc-container {
    max-width: 450px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
}
.wacc-container .form-group {
    margin-bottom: 15px;
}
.wacc-container label {
    display: block;
    font-weight: bold;
}
.wacc-container input, .wacc-container textarea, .wacc-container select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}
.wacc-container button {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
}
/* Gaya Tombol Melayang */
#wacc-floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    font-weight: bold;
}

/* Overlay Popup */
.wacc-mode-popup {
    display: none; /* Sembunyikan awal */
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.wacc-mode-popup .wacc-container {
    position: relative;
    max-width: 400px;
    width: 90%;
    animation: slideUp 0.3s ease;
}

.wacc-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
#wacc-floating-button img {
    width: 25px; /* Ubah angka ini untuk mengatur besar ikon */
    height: auto;
    display: block;
}