@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f7f7f7;
            margin: 0;
            padding: 0;
        }

        /* Popup Container */
        /* Popup Container */
#marhaban-popup {
    position: fixed;
    top: 10%;
    left: 20px; /* Jarak dari kiri */
    background: white;
    color: #333;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 16px;
    z-index: 1000;
    max-width: 320px;
    font-weight: 500;
    border: 4px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    animation: fadeInDown 0.8s ease-out forwards, animated-border 4s linear infinite;
}

/* Animasi Masuk */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px); /* Diubah biar ga ngaruh ke X */
        visibility: hidden;
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Jadi cuma Y aja */
        visibility: visible;
    }
}

/* Animasi Keluar */
@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0); 
    }
    100% {
        opacity: 0;
        transform: translateY(-20px); 
        visibility: hidden;
    }
}


	#marhaban-popup h2 {
    font-size: 16px; /* Kecilkan ukuran */
    font-weight: 600; /* Biar tetap jelas */
    margin-bottom: 8px; /* Kasih jarak bawah biar rapi */
}

        /* Tombol Close */
        #close-m-popup {
            position: absolute;
            top: 1px;
            right: 1px;
            width: 24px;
            height: 24px;
            background: #ff4e50;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
        }

        #close-m-popup:hover {
            background: #d83e42;
            transform: scale(1.1);
        }