* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /*background: linear-gradient(135deg, #a01d55 0%, #c41e3a 100%);*/
    min-height: 100vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

/* Custom scrollbar for body */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.chatbot-container {
    width: 100%;
    max-width: 480px;
    max-height: 590px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: fixed;
    bottom: 10px;
    right: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.9) rotateX(10deg);
}

.chatbot-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1) rotateX(0deg);
}

.chatbot-header {
    background: linear-gradient(135deg, #a01d55 0%, #c41e3a 100%);
    color: white;
    padding: 16px 15px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
   /* overflow: hidden;*/
}
 

.bot-avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #a01d55 0%, #c41e3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 
        0 8px 25px rgba(160, 29, 85, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}   

.bot-avatar img {
    max-width: 100%;
    border-radius: 50%;
}

.bot-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
}

.bot-avatar:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 
        0 12px 35px rgba(160, 29, 85, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.bot-avatar:hover::before {
    animation: shimmer 2s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.header-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.status {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

.status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.bot-description {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border-left: 4px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    word-wrap: break-word;
    position: relative;
    z-index: 1;
}

.bot-description:hover {
    background: rgba(255, 255, 255, 0.2);
    border-left-color: rgba(255, 255, 255, 0.6);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.bot-description::before {
    content: '💬';
    margin-right: 10px;
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.close-btn {
    position: absolute;
    right: 16px;
    top: 24px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 0px 8px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chat-messages {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    max-height: 390px;
}

/* Logo Intro Section */
.logo-intro { 
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}  

.intro-logo {
    margin-bottom: 20px;
}

.intro-logo img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 
        0 8px 25px rgba(160, 29, 85, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.intro-logo img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 
        0 12px 35px rgba(160, 29, 85, 0.3),
        0 0 0 3px rgba(255, 255, 255, 0.9);
}

.intro-content h2 {
    color: #a01d55;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(160, 29, 85, 0.1);
}

.intro-content p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.intro-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(160, 29, 85, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 80px;
    cursor: pointer;
}

.feature:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(160, 29, 85, 0.2);
    box-shadow: 0 8px 20px rgba(160, 29, 85, 0.15);
}

.feature i {
    font-size: 20px;
    color: #a01d55;
    filter: drop-shadow(0 2px 4px rgba(160, 29, 85, 0.2));
}

.feature span {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
    line-height: 1.3;
}

/* Feedback Buttons */
.feedback-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(160, 29, 85, 0.1);
}

.feedback-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid rgba(160, 29, 85, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feedback-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(160, 29, 85, 0.1), transparent);
    transition: left 0.5s ease;
}

.feedback-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(160, 29, 85, 0.4);
    box-shadow: 0 6px 20px rgba(160, 29, 85, 0.15);
}

.feedback-btn:hover::before {
    left: 100%;
}

.feedback-btn:active {
    transform: translateY(0);
}

.feedback-btn i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.feedback-btn span {
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Like Button Styles */
.like-btn:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    color: #16a34a;
}

.like-btn:hover i {
    color: #22c55e;
    transform: scale(1.1);
}

.like-btn.active {
    background: rgba(34, 197, 94, 0.15);
    border-color: #22c55e;
    color: #16a34a;
}

.like-btn.active i {
    color: #22c55e;
}

/* Dislike Button Styles */
.dislike-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #dc2626;
}

.dislike-btn:hover i {
    color: #ef4444;
    transform: scale(1.1);
}

.dislike-btn.active {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #dc2626;
}

.dislike-btn.active i {
    color: #ef4444;
}

/* Feedback Button Animation */
.feedback-btn.clicked {
    animation: feedbackClick 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes feedbackClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

.message {
    display: flex;
    gap: 14px;
    max-width: 85%;
    animation: messageSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.message-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.message-avatar img {
    max-width: 100%;
    border-radius: 50%;
}

.message-avatar:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.message-avatar:hover::before {
    opacity: 1;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #a01d55 0%, #c41e3a 100%);
    color: white;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.message-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 20px;
    position: relative;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

/* Feedback buttons within message content */
.message-content .feedback-buttons {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(160, 29, 85, 0.1);
    gap: 10px;
}

.message-content .feedback-btn {
    padding: 2px 14px;
    font-size: 12px;
    gap: 6px;
}

.message-content .feedback-btn i {
    font-size: 12px;
}

.message-content .feedback-btn span {
    font-size: 11px;
}
 

.user-message .message-content {
    background: linear-gradient(135deg, #a01d55 0%, #c41e3a 100%);
    color: white;
    box-shadow: 
        0 6px 20px rgba(160, 29, 85, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.user-message .message-content::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.message-content p {
    margin-bottom: 6px;
    line-height: 1.5;
    word-wrap: break-word;
    font-weight: 500;
    font-size: 16px;
}

/* Links inside bot messages */
.bot-message .message-content a {
    color: #a01d55;
    text-decoration: underline;
    word-break: break-all;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bot-message .message-content a:hover {
    text-decoration: none;
    color: #c41e3a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Section titles inside bot messages */
.bot-message .message-content .section-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #a01d55;
}

.bot-message .message-content .section-title i {
    color: #a01d55;
}

.message-time {
    font-size: 11px;
    opacity: 0.7;
    display: block;
    font-weight: 500;
    margin-top: 4px;
}

.chat-input-container {
    padding: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}

.chat-input-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 29, 85, 0.3), transparent);
}

.input-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
}

#messageInput {
    flex: 1;
    padding: 10px 20px;
    border: 2px solid rgba(160, 29, 85, 0.2);
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#messageInput:focus {
    border-color: #a01d55;
    box-shadow: 
        0 4px 20px rgba(160, 29, 85, 0.2),
        0 0 0 3px rgba(160, 29, 85, 0.1);
    transform: translateY(-1px);
}

#messageInput::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

.send-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a01d55 0%, #c41e3a 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 6px 20px rgba(160, 29, 85, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.send-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.send-btn:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 
        0 8px 25px rgba(160, 29, 85, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.send-btn:hover::before {
    left: 100%;
}

.send-btn:active {
    transform: scale(0.95);
}

.typing-indicator {
    display: none;
    gap: 14px;
    margin: 12px 0;
    align-self: flex-start;
    max-width: 85%;
    animation: messageSlide 0.4s ease;
}

.typing-indicator.show {
    display: flex;
}

.typing-bubbles {
    display: flex;
    gap: 6px;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 20px;
    min-width: 70px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
}

.typing-bubbles span {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #a01d55 0%, #c41e3a 100%);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-bubbles span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-bubbles span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes bubblePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.1;
    }
} 



.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #a01d55 0%, #c41e3a 100%);
    border-radius: 50%;
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    animation: bubbleFloat 3s ease-in-out infinite;
}

.chatbot-toggle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #9E005D 0%, #C7007D 100%);
    border-radius: 50%;
    opacity: 0.3;
    animation: bubblePulse 2s ease-in-out infinite;
    z-index: -1;
}
.chatbot-toggle::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #9E005D 0%, #C7007D 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: bubblePulse 2s ease-in-out infinite 0.5s;
    z-index: -2;
}
@keyframes bubblePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}


.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}



.chatbot-toggle.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 480px) {
    .chatbot-container {
        height: 100vh;
        max-width: 100%;
        border-radius: 0;
        bottom: 0;
        right: 0;
        left: 0;
    }
    
    .chatbot-toggle {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .chat-messages {
        padding: 20px;
    }
    
    .chat-input-container {
        padding: 20px;
    }
    
    .chatbot-header {
        padding: 20px;
    }
    
    /* Logo Intro Responsive */
    .logo-intro {
        padding: 20px 0px;
        margin-bottom: 16px;
    }
    
    .intro-logo img {
        width: 70px;
        height: 70px;
    }
    
    .intro-content h2 {
        font-size: 20px;
    }
    
    .intro-content p {
        font-size: 13px;
        max-width: 280px;
    }
    
    .intro-features {
        gap: 12px;
    }
    
    .feature {
        padding: 10px 5px;
        min-width: 60px;
    }
    
    .feature i {
        font-size: 18px;
    }
    
    .feature span {
        font-size: 10px;
    }
    
    /* Feedback Buttons Responsive */
    .feedback-buttons {
        gap: 10px;
        margin-top: 16px;
        padding-top: 16px;
    }
    
    .feedback-btn {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
    }
    
    .feedback-btn i {
        font-size: 12px;
    }
    
    .feedback-btn span {
        font-size: 11px;
    }
}

/* Enhanced Scrollbar Styling */
.chat-messages::-webkit-scrollbar {
    width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(160, 29, 85, 0.1);
    border-radius: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #a01d55 0%, #c41e3a 100%);
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #8b1a4a 0%, #b01e33 100%);
}

/* Animation for new messages */
.message.new {
    animation: messageSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
.send-btn:focus,
#messageInput:focus {
    outline: 2px solid #a01d55;
    outline-offset: 3px;
}

/* Loading animation for the toggle button */
.chatbot-toggle.loading {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Message bubble animations */
.message-content {
    position: relative;
    overflow: hidden;
}

 

/* Enhanced status indicator */
.status {
    position: relative;
}

.status::after {
    content: '';
    position: absolute;
    top: 7px;
    left: -3px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border-radius: 50%;
    opacity: 0.3;
    animation: statusGlow 2s ease-in-out infinite;
    width: 14px;
    height: 14px;
}

@keyframes statusGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}
@media(max-width: 575px){
    .message-content .feedback-btn {
        padding: 2px 6px; 
    }
    .message { 
        max-width: 100%; 
    }
}