/* CSS untuk tombol squishy */
.wa-squishy-btn {
    position: relative;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 250ms;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.4;
    background-color: #719ada;
    color: white;
    border-radius: 0.5rem;
    box-shadow:
        inset 0 1px 0 0 rgba(255,255,255,0.3),
        0 2px 0 0 #719ada,
        0 4px 0 0 #5c86d8,
        0 6px 0 0 #4b72c1,
        0 8px 0 0 #3d61ab,
        0 8px 16px 0 rgba(113,154,218,0.5);
    overflow: hidden;
}

.wa-squishy-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.wa-squishy-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

.wa-squishy-btn:hover {
    background-color: #25D366;
    transform: translateY(4px);
    box-shadow:
        inset 0 1px 0 0 rgba(255,255,255,0.3),
        0 1px 0 0 #25D366,
        0 2px 0 0 #1eb45c,
        0 3px 0 0 #199c4f,
        0 4px 0 0 #128c48,
        0 4px 8px 0 rgba(37,211,102,0.5);
}

.wa-squishy-btn:hover i {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25%);
    }
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* CSS untuk popup */
.wa-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.wa-popup {
    background: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-family: sans-serif;
    position: relative;
}

.wa-popup-header {
    background: #4a90e2;
    color: white;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
}

.wa-admin {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.2s;
}

.wa-admin:hover {
    background: #f9f9f9;
}

.wa-admin img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    background-color: #719ada;
}

.wa-admin .name {
    font-weight: bold;
}

.wa-admin .role {
    font-size: 12px;
    color: #888;
}

.wa-popup-footer {
    text-align: center;
    padding: 10px 15px;
    font-size: 13px;
    color: #444;
}

.wa-close-btn {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 18px;
    position: absolute;
    top: 12px;
    right: 16px;
    cursor: pointer;
}