        body {
            font-family: Arial, sans-serif;
            background-color: #f3f3f3;
            margin: 0;
            padding: 0;
            color: #333;
        }

        header {
            text-align: center;
            padding: 30px 15px 10px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        header img {
            width: 100%;
            max-width: 600px;
            height: auto;
        }

        header h1 {
            color: #F76C46;
            font-size: 28px;
            margin: 15px 0 5px;
        }

        header p {
            font-size: 16px;
            color: #666;
            margin-bottom: 15px;
        }

        .user-bar {
            text-align: center;
            background: #ffffff;
            padding: 10px 20px;
            margin: 20px auto;
            border-radius: 8px;
            width: fit-content;
            box-shadow: 0 0 8px rgba(0,0,0,0.1);
        }

        .user-bar p {
            margin: 0;
            font-size: 20px;
            color: #555;
        }

        .user-bar strong {
            font-size: 20px;
            color: #0073e6;
        }

        .user-bar form {
            display: inline;
            margin-left: 15px;
        }

        .user-bar button {
            padding: 6px 14px;
            background: #0073e6;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 20px;
            font-weight: bold;
            transition: background 0.3s;
        }

        .user-bar button[name="home"] {
            background: #28a745;
        }

        .user-bar button:hover {
            background: #005bb5;
        }

        .section {
            background: white;
            margin: 30px auto;
            padding: 25px;
            border-radius: 10px;
            max-width: 1100px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .section h2 {
            color: #F76C46;
            text-align: center;
            margin-bottom: 20px;
        }

        .links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .links a {
            display: block;
            background: #f8f9fa;
            border: 1px solid #ccc;
            padding: 15px 20px;
            border-radius: 8px;
            text-decoration: none;
            color: #333;
            font-weight: bold;
            transition: all 0.3s;
            width: 260px;
            text-align: center;
        }

        .links a:hover {
            background: #0073e6;
            color: #fff;
            border-color: #0073e6;
        }

        footer {
            text-align: center;
            padding: 20px;
            font-size: 13px;
            color: #666;
            background-color: #fff;
            border-top: 1px solid #ddd;
        }
		
		        .login-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.15);
            width: 320px;
            text-align: center;
        }
        #logo-login {
            width: 100%;
            height: auto;
            display: block;
            margin-bottom: 20px;
            border-radius: 6px;
        }
        .login-box h2 {
            margin-bottom: 20px;
        }
        .login-box form {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .login-box input {
            width: 100%;
            padding: 10px;
            margin: 8px 0;
            border-radius: 5px;
            border: 1px solid #ccc;
            font-size: 14px;
        }
        .login-box button {
            width: 100%;
            padding: 10px;
            background: #0073e6;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
            transition: background 0.3s ease;
            font-weight: bold;
        }
        .login-box button:hover {
            background: #005bb5;
        }
        .errore {
            color: red;
            text-align: center;
            margin-bottom: 10px;
        }