﻿
.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 300px;
    max-width: 500px;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    z-index: 1050;
    display: none; /*hidden initially */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.notification.success {
    background-color: var(--theme-success);
    color: var(--theme-text-font);
}

.notification.error {
    background-color: var(--theme-danger);
    color: var(--theme-text-font);
}
