        body {
            background-image: url('content/background.png');
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            text-decoration: none;
            flex-direction: column;
            display: flex;
            margin: 0;
            min-height: 100vh;
        }

        header, footer {
            background-color: #2b2b2b;
            text-decoration: none;
            color: white;
            align-items: center;
            display: flex;
        }

        a {
            text-decoration: none;
            color: white;
            font-weight: bold;
            padding: 10px;
        }

        .content {
            text-decoration: none;
            color: white;
            text-align: left;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            padding: 40px 10%;
            flex: 1;
        }

        .section-title {
            font-size: 36px;
            text-align: center;
            margin-bottom: 20px;
            color: white;
        }

        .table {
            width: 90%;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            border-collapse: collapse;
            background-color: #1f3d7a;
        }

        .table th, .table td {
            border: 2px solid white;
            padding: 15px;
            text-align: center;
            color: white;
            font-size: 20px;
        }

        .table th {
            background-color: #2b56ad;
            font-weight: bold;
            font-size: 22px;
        }

        .panel {
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            margin: 20px 0;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        footer {
            justify-content: center;
            margin-top: 10px;
        }
