/* style.css */
body {
    background-image: url('/images/RAPfrontpage.png');
    background-position: center;
    background-repeat: no-repeat;
}

.notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    max-width: 500px;
    width: 100%;
}

.notification {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 10px;
    text-align: center;
    color: white;
}

.notification.success {
    background-color: #28a745;
}

.notification.error {
    background-color: #dc3545;
}

.notification.dismissable .close-btn {
    float: right;
    cursor: pointer;
    color: white;
    font-weight: bold;
    margin-left: 10px;
}