
	html {
		scroll-behavior: smooth;
	}
	
* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}
	body {
		background: url('immagini/soccer-1678992_1920.jpg') no-repeat center center fixed;
		background-size: cover;
		min-height: 100vh;         /* Permette di crescere in altezza */
		display: flex;
		flex-direction: column;
		align-items: center;
		color: white;
		font-family: Arial, sans-serif;
		overflow-y: auto;          /* Attiva lo scroll verticale */
		overflow-x: hidden;        /* Nasconde solo scroll orizzontale */
		padding-bottom: 50px;      /* Spazio extra per il grafico */
	}
	
	.title {
		position: absolute;
		top: 10px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 56px;
		font-weight: bold;
		font-family: 'Arial Black', sans-serif;
		text-transform: uppercase;
		background: linear-gradient(to right, red, blue, white, black, green, cyan);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.title h2 {
		font-size: 15px;
		color: white;
		background-color: #007bff; /* Sfondo blu */
		padding: 10px 20px;
		border-radius: 5px; /* Angoli arrotondati */
		box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3); /* Ombra */
		text-align: center;
		-webkit-text-fill-color: white; /* Rende il testo visibile */
	}
	.top-right {
		position: absolute;
		top: 20px;
		right: 20px;
		background: rgba(0, 0, 0, 0.7);
		padding: 20px;
		border-radius: 10px;
	}
	.top-right input, .top-right button {
		display: block;
		margin: 5px 0;
		padding: 5px;
	}
	.bottom-left {
		position: absolute;
		bottom: 20px;
		left: 20px;
		background: rgba(0, 0, 0, 0.7);
		padding: 10px;
		border-radius: 10px;
		font-size: 16px;
	}
	.button-container {
		position: absolute;
		bottom: 50px;
		display: flex;
		gap: 20px;
	}
	.button-container button {
		padding: 15px 30px;
		font-size: 20px;
		font-weight: bold;
		border: none;
		border-radius: 10px;
		cursor: pointer;
		color: white;
	}
.button {
	display: inline-block;
	padding: 10px 20px;
	background-color: ##f8fdf4;
	color: red;
	text-decoration: none;
	border-radius: 5px;
	font-size: 16px;
}
.button:hover {
	background-color: #00ff00;
}

.form-container {
width: 350px; /* Larghezza del form */
margin-top: 200px;
padding: 20px;
background-color: white; /* Sfondo rettangolo */
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Ombra */
border-radius: 10px; /* Angoli arrotondati */
text-align: center;
}

.form-container h2 {
    margin-bottom: 20px;
    color: #007bff;
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-container button:hover {
    background-color: #0056b3;
}
.message {
    margin: 20px 0;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.message.error {
    color: red;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.message.success {
    color: green;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}
        .btn1 { background-color: red; }
        .btn2 { background-color: blue; }
        .btn3 { background-color: green; }
		
.chart-container {
    width: 90%;
    max-width: 900px;
    height: 400px;
    margin: 40px auto;
    background: rgba(145,145,145,0.8); /* sfondo chiaro per visibilità */
    border-radius: 10px;
    padding: 10px;
}
canvas#graficoSaldo {
    min-height: 400px !important;
    min-width: 600px !important;
    display: block !important;
	
}
#menuFisso {
    position: fixed;
    top: 180;
    left: 100;
    right: 100;
    background: #eee;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    z-index: 9999;
}
#menuFisso a {
    color: black;
    font-weight: bold;
    margin: 0 15px;
    text-decoration: none;
	font-size: 14px;
}
#menuFisso a:hover {
    text-decoration: underline;
}