﻿#notification-area {
    position: fixed !important;
    bottom: 1rem !important;
    right: 1rem !important;
    left: auto !important;
    top: auto !important;
    z-index: 9999;
}

#notification-area .toast {
    width: 400px;
}

#notification-area .toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #212529;
}

#notification-area .toast-header .btn-close {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.5rem;
    margin-left: 0.75rem;
}

#notification-area .toast-header small {
    margin-left: auto;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

#notification-area .toast-header .me-auto {
    font-size: 1rem;
}

.toast-success .toast-header {
    background-color: rgba(208, 236, 241, 0.75);
    color: #0f5132;
}
.toast-success .toast-body {
    background-color: rgba(208, 236, 241, 0.35);
    color: #0f5132;
}

.toast-error .toast-header {
    background-color: rgba(248, 215, 218, 0.9);
    color: #842029;
}
.toast-error .toast-body {
    background-color: #f8d7da;
    color: #842029;
}

.toast-warning .toast-header {
    background-color: rgba(255, 170, 0, 0.75);
    color: #842029;
}
.toast-warning .toast-body {
    background-color: rgba(255, 170, 0, 0.35);
    color: #842029;
}