/**
 * CruelCRM Notifications Styles
 */
.cruelcrm-notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 300px;
    max-width: 90%;
}

.cruelcrm-notification {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    padding: 15px;
    position: relative;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    border-left: 4px solid #ccc;
}

.cruelcrm-notification.active {
    transform: translateX(0);
}

.cruelcrm-notification-content {
    margin-right: 20px;
    word-wrap: break-word;
}

.cruelcrm-notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    opacity: 0.7;
}

.cruelcrm-notification-close:hover {
    opacity: 1;
}

/* Notification types */
.cruelcrm-notification-success {
    border-left-color: #4CAF50;
}

.cruelcrm-notification-error {
    border-left-color: #F44336;
}

.cruelcrm-notification-warning {
    border-left-color: #FF9800;
}

.cruelcrm-notification-info {
    border-left-color: #2196F3;
}