:root {
    --success: #0ABF30;
    --warning: #FFC107;
    --error: #FF5722;
}

.notifications {
    position: fixed;
    top: 30px;
    right: 20px;
}

.notifications .toast {
    width: 300px;
    position: relative;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 16px 17px;
    margin-bottom: 10px;
    background: #ffffff;
    top: 80vh;
    right: 3rem;
}

.toast::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    bottom: 0px;
    left: 0px;
    animation: progress 5s linear forwards;
}

@keyframes progress {
    100% {
        
        width: 0%;
    }
}

.toast .column span {
    font-size: 1.07rem;
}

.column {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toast .column i {
    font-size: 1.75rem;
    color: var(--success);
    /* Default icon color */
}

.toast.success .column i {
    color: var(--success);
    /* Icon color for success status */
}

.toast.warning .column i {
    color: var(--warning);
    /* Icon color for warning status */
}

.toast.error .column i {
    color: var(--error);
    /* Icon color for error status */
}


.toast.success::before {
    background: var(--success);
}

.toast.warning::before {
    background: var(--warning);
}

.toast.error::before {
    background: var(--error);
}