/* Tema Love */
.theme-love {
    background: pink;
    color: red;
    border: 2px solid red;
}

/* Tema Dark */
.theme-dark {
    background: black;
    color: white;
    border: 2px solid white;
}

/* Tema Flower */
.theme-flower {
    background: lightblue;
    color: darkblue;
    border: 2px solid darkblue;
}


/* Efek Fade In */
.fade {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Efek Slide In */
.slide {
    transform: translateX(-100%);
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Efek Bounce */
.bounce {
    animation: bounceIn 0.6s forwards;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Efek Zoom In */
.zoom {
    transform: scale(0.5);
    animation: zoomIn 0.5s forwards;
}

@keyframes zoomIn {
    from { transform: scale(0.5); }
    to { transform: scale(1); }
}

/* Gaya untuk Emoji Reactions */
#emoji-reactions {
    text-align: center;
    margin-top: 20px;
}

.emoji-list {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.emoji-btn {
    font-size: 24px;
    padding: 5px 10px;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.emoji-btn:hover {
    transform: scale(1.2);
}

/* Gaya untuk Notifikasi Pesan Masuk */
#message-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffcc00;
    color: black;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

#message-notification.show {
    opacity: 1;
    transform: translateY(0);
}