﻿

.alert-overlay {
    position: fixed;
    bottom: 2rem;
    z-index: 1050; /* sopra tutto */
    width: 100%;
}

.alert {
    margin: 0 auto;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

    .alert .alert-message {
        white-space: pre-line !important;
        text-align: center;
        font-size: 1.1rem;
        font-weight: 600;
    }


.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}


.validation-message {
    color: #ff6262;
    font-size: 0.8rem;
}

.form-control.invalid,
.form-control.form-select {
    border-color: #ff6262;
}