/* your custom style here */




.chat_avatar img,.user_item_avatar .acav,.user_item_avatar img {

	
	box-shadow: unset;
	background: transparent;
	padding: 0;
	border-radius: 10px 0 10px 0;
}



/* for Topic Wc */
/* Stylish background with animation */
@keyframes glowEffect {
    0% { box-shadow: 0px 0px 10px rgba(0, 123, 255, 0.3); }
    50% { box-shadow: 0px 0px 20px rgba(0, 123, 255, 0.6); }
    100% { box-shadow: 0px 0px 10px rgba(0, 123, 255, 0.3); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.other_logs.splog {
    background: linear-gradient(135deg, #ededff, #ededff); /* Soft Blue Gradient */
    border-left: 0px solid #007bff; /* Blue left border */
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    font-size: 16px;
    box-shadow: 0px 0px 10px rgba(0, 123, 255, 0.3);
    animation: fadeIn 0.8s ease-in-out, glowEffect 2s infinite alternate;
    transition: 0.3s ease-in-out;
}



