.message-wrapper {
    position: fixed;
    top: 15%;
    left: 20px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 16px;
    z-index: 9999;
    direction: rtl;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    max-width: 90%;
    width: fit-content;
    transition: opacity 0.5s ease;
}

.message-wrapper.success {
    background-color: #e6f9e6;
    border: 1px solid #a3d9a3;
    color: #2e7d32;
}

.message-wrapper.error {
    background-color: #ffe6e6;
    border: 1px solid #e09a9a;
    color: #c62828;
}

.message-text {
    margin-bottom: 4px;
}

.message-timer {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 4px;
    width: 0%;
    border-radius: 0 0 6px 6px;
    transition: width 5s linear;
}

.message-wrapper.success .message-timer {
    background-color: #2e7d32;
}
.message-wrapper.error {
    background-color: #ffe6e6;
    border: 1px solid #e09a9a;
    color: #c62828;
}
.message-wrapper.error .message-timer {
    background-color: #c62828;
}
@media (max-width: 768px){
    .message-wrapper {
        top: 10%;
    }
}