
/* Word Limit Notification Styles */
.word-limit-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 350px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease;
    border-left: 4px solid #ff5252;
}

.word-limit-notification.show {
    transform: translateX(0);
    opacity: 1;
}

/* Close button removed as requested */

.notification-content h4 {
    margin: 0 0 10px 0;
    color: #ff5252;
    font-size: 16px;
}

.notification-content p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.4;
    color: #555;
}

.notification-content strong {
    font-weight: 600;
    color: #333;
}

.notification-content p:last-child {
    margin-bottom: 0;
}
