/* Reset Chat Button Styles */
.chat-reset-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.chat-reset-btn:hover {
    transform: rotate(15deg);
    background: rgba(255, 107, 107, 0.3);
}

/* Dark mode adjustments */
.dark-mode .chat-reset-btn {
    background: rgba(255, 255, 255, 0.1);
}

.dark-mode .chat-reset-btn:hover {
    background: rgba(255, 107, 107, 0.4);
}

/* Responsive design */
@media (max-width: 600px) {
    .chat-reset-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}