/* مرکز و برجسته کردن پیام‌های سیستم Drupal */
[data-drupal-messages] {
    display: flex;
    justify-content: center;
    /* افقی وسط */
    margin: 1.5rem 0;
}

.messages__wrapper {
    width: 100%;
    margin-right: 5rem;
    justify-content: center;
}

.messages {
    max-width: 800px;
    /* عرض محدود برای زیبایی */
    text-align: center;
    /* متن وسط‌چین */
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

/* رنگ پیام‌های مختلف */
.messages--status {
    background-color: #e6f4ea;
    border: 1px solid #b7e1cd;
    color: #155724;
}

.messages--warning {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.messages--error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}