.custom-messages-container {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-message {
    position: relative; /* برای دکمه حذف */
    padding: 12px 40px 12px 16px; /* جای کافی برای دکمه × */
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}


.close-message {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
}

.close-message:hover {
    color: #000;
}

.custom-message-success {
    background: linear-gradient(135deg, rgba(23, 138, 84, 0.77) 0%, rgb(12, 94, 70) 100%);
}

.custom-message-error {
    background: linear-gradient(135deg, rgba(183, 33, 33, 0.65) 0%, rgba(190, 28, 28, 0.6) 100%);
}

.custom-message-warning {
    background: #ff9800bf!important;
}

.custom-message-info {
    background-color: #2196F3;
}
