.ps-alert-success {
    background-color: green;
    z-index: 9999;
    color: #fff;
    border-radius: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}
.ps-alert-danger {
    background-color: red;
    z-index: 9999;
    color: #fff;
    border-radius: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}
.ps-alert-info {
    background-color: #19e6fc;
    z-index: 9999;
    color: black;
    border-radius: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
}