.messages {
    width: 100%;
}

.message {
    position: relative;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid var(--line, #111111);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    font-weight: 500;
}

.message::before {
    content: "";
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin-top: 4px;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: currentColor;
}

.message-success {
    background: #edf7ef;
    color: #174523;
}

.message-error,
.message-danger {
    background: #fff0f0;
    color: #7a1f1f;
}

.message-warning {
    background: #fff8e6;
    color: #6b460b;
}

.message-info,
.message-debug {
    background: #edf4ff;
    color: #1e426d;
}
