/* your custom style here */

.topic_log {
    background: #ff73a2;
    color: #0d261a;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(13, 38, 26, 0.12);
    
    /* Animation */
    animation: topicFloat 3s ease-in-out infinite;
    transition: all 0.3s ease;
    
    /* Soft shadow */
    box-shadow: 0 6px 18px rgba(13, 38, 26, 0.12);
}

/* Floating animation */
@keyframes topicFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 6px 18px rgba(13, 38, 26, 0.12);
    }

    50% {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(13, 38, 26, 0.20);
    }
}

