
        body {
            background-color: #ffffcc;
            font-family: Arial, sans-serif;
        }
        .container {
            border: 2px solid red;
            padding: 20px;
            margin: 20px;
        }
        h2 {
            background-color: #ccff66;
            text-align: center;
            padding: 10px;
            margin-top: 0;
        }
        form {
            display: flex;
            flex-direction: column;
        }
        .row, .team-section {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
        }
        label {
            width: 180px;
            font-weight: bold;
        }
        input, select {
            flex: 1;
            min-width: 150px;
        }
        .team-table {
            width: 100%;
            margin: 10px 0;
            border-collapse: collapse;
		
        }
        .team-table th, .team-table td {
            border: 1px solid #000;
            padding: 4px;
        }
        .buttons {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }
		.totalrow {
			text-align: center;
			margin-bottom: 10px;
			font-size: 18px;
			text-decoration: underline;
		}
		.scoretable {
			align: center;
		}
		.totalpointsrow {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
        }