
#messages-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.message {
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.5s ease;
}

.success {
    background: #4caf50;
}

/* سبز */
.error {
    background: #f44336;
}

/* قرمز */
.warning {
    background: #ff9800;
}

/* نارنجی */
.info {
    background: #2196f3;
}

/* آبی */

.message.success {
    background-color: #16a34a;
}

/* سبز */
.message.error {
    background-color: #dc2626;
}

/* قرمز */
.message.warning {
    background-color: #f59e0b;
}

/* نارنجی */
.message.info {
    background-color: #2563eb;
}

/* آبی */
