#notif-container {
    position: fixed;
    z-index: 10000;
    width: 100%;
    top: 10px;
    text-align: center;
}

.notif {
    padding: 20px 30px;
    margin: 5px auto;
    border-radius: 5px;
    display: inline-block;
    text-align: left;
    max-width: 90%;
    min-width: 30%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    transition: opacity 0.5s;
}

.notif-input {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 6px;
    font-size: 14px;
}


.notif-default {
    background-color: #ffffff;
    color: #000;
}

.notif-error {
    background-color: #f44336;
    color: #fff;
}

.notif-success {
    background-color: #4ecf54;
    color: #fff;
}

.notif-info {
    background-color: #9c27b0;
    color: #fff;
}

.notif-warning {
    background-color: #ff9800;
    color: #fff;
}

.notif-primary {
    background-color: #2196f3;
    color: #fff;
}

.notif-title {
    font-weight: 800;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.notif-text {
    font-weight: 600;
    font-size: 14px;
    display: block;
}

.notif-buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.notif-btn {
    margin: 0 5px;
    padding: 8px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.notif-yes {
    background-color: #4caf50;
    color: #fff;
}

.notif-no {
    background-color: #f44336;
    color: #fff;
}

.notif-ok {
    background-color: #007bff;
    color: #fff;
}

.notif-fadeout {
    opacity: 0;
}
