﻿.alert-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f44336; /* Red for errors */
    color: white;
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    width: 300px;
}

    .alert-box p {
        margin: 0;
        line-height: 1.5;
    }

.alert-boxSuccess {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: green; /* Red for errors */
    color: white;
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
    font-family: Arial, sans-serif;
    font-size: 14px;
    width: 300px;
}

    .alert-boxSuccess p {
        margin: 0;
        line-height: 1.5;
    }