
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #eef2f3;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 2em auto;
    background: #ffffff;
    padding: 1em;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	margin-bottom:8px;
	margin-top:2px;
}

.ElencoAnomalie {
    max-width: 800px;
    margin: 2em auto;
    color: #4e4e55;
    background: #ffffff;
    padding: 1em;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 8px;
    margin-top: 2px;
}

.Esa {
    font-size: 5em;
    text-align: center;
    color: #993366;
    font-family: 'Courier';
    text-shadow: 2px 2px 4px #999999;
}

.Errore {
    font-size: 30px;
    text-align: center;
    color: #800000;        
}

.Annotazioni {
	font-size:14px;
}

h1{
    font-size: 4em;
	text-align: center;
    color: #993366;
	font-family: 'Courier';
	text-shadow: 2px 2px 4px #999999;
	margin-bottom:5px;
	margin-top:2px;
}
h2, h3 {
    text-align: center;
    color: #333;
	margin-bottom:5px;
	margin-top:5px;
}

table {
    width: 60%;
    border-spacing: 0.5em;
}

td {
    padding: 0.5em;
}

label {
    font-weight: bold;
	color: #4e4e55;
	font-size:2em;
}

.form-riga {
    display: flex;
    flex-direction: row;    
    align-items: center;
    flex-wrap: wrap;	
}
.form-colonna {	
    display: flex;
    flex-direction: column;    
	align-items:center;
	
}
hr {border-top: 1px solid #8d8d8d;}

input {
    padding: 0.75em;
    font-size: 1em;
    border-radius: 8px;
    border: 1px solid #ccc;
	width: 60%;
    box-sizing: border-box;
	display: block;
    margin: 0 auto;
}
button {
    padding: 0.75em;
	font-size: 1.2em;
	background: #993366;
    color: #fff;
    border: none;
	border-radius: 8px;
    transition: background 0.3s ease;
	width:	200px;
    text-align:center;
	
}

.center {
    text-align: center;
}

button:hover {
    background: green;
}
a {
    color: #007bff;
    text-decoration: none;
    display: block;
    text-align: center;
}
a:hover {
    text-decoration: underline;
}
.result {
    margin-top: 1em;
    padding: 1em;
    font-weight: bold;
    border-radius: 6px;
}

.esito-positivo {
    background-color: #d4edda;
    border-left: 5px solid #28a745;
    color: #155724;
}

.esito-notYet {
    background-color: #fff3cd;
    border-left: 5px solid #fd7e14;
    color: #856404;
}

.esito-anomalie {
    background-color: #f8d7da;
    border-left: 5px solid #dc3545;
    color: #721c24;
}
.esito-invalid {
    background-color: #f8d7da;
    border-left: 5px solid #dc3545;
    color: #721c24;
}

.esito-generico {
    background-color: #e2e3e5;
    border-left: 5px solid #6c757d;
    color: #383d41;
	}


ol.anomalie {
    padding: 15px 20px;
    border-left: 2px solid #993366;
    border-right: 2px solid #993366;
    border-bottom: 2px solid #993366;
    border-top: 2px solid #993366;
    border-radius: 6px;
    margin-top: 20px;
    list-style-position: outside;
    background: #FFFFFF;
}

ol.anomalie li {
    margin-bottom: 12px;
    background: #FFFFFF;
    border-bottom: 1px solid #993366;
}

@media (max-width: 1080px) {
    .form-riga {
        flex-direction: column;
    }
	.container {        
        width:100%;}

    input {
        width: 100%;
        height: 100px;
        font-size: 2em;
    }

     button {
        height: 100px;
        width: 400px;
        font-size: 3em;
    }
    a, p {
        font-size: 2em;
    }
    h1 {
        font-size: 8em;
    }
    h2 {
        font-size: 2.5em;
    }

    .Esa {
        font-size: 8em;
    }
    label {
        font-size: 3em;
    }
}