
		html {
	
		height:100%;
		}
		
		body {
		display: flex;
    	justify-content: center; /* Horizontally center the container */
    	align-items: center; /* Vertically center the container */
    	height: 100vh;
    	margin: 0; /* Remove default margin */
		padding: 0;
		margin-top: 5px;	
	}
	#highestScorer {
    font-size: 18px; /* Set the font size */
    font-weight: bold; /* Make the text bold */
    color: #333; /* Text color */
    padding: 10px; /* Add some padding */
    background-color: #f4f4f4; /* Set background color */
    border-radius: 5px; /* Round the corners */
    text-align: center; /* Center the text */
    margin: 20px auto; /* Center the element and add top and bottom margin */
    width: fit-content; /* Make the width fit the content */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}
		
		
h1 {
    border: solid;
    border-image: radial-gradient(circle, red, green) 1;
    padding: 5px 10px;
    text-align: center;
	margin:0;
    background: linear-gradient(to right, red, green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

th {
	text-decoration: underline;
	}
th input {
	font-weight:bold;
		}
		

       /* Container styling */
.container {
    width: calc(100% - 10px);
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 	background-color: lightblue;
    border: solid;
    border-image: radial-gradient(circle, red, blue, green) 1;
}
        .form-group {
            margin-bottom: 10px;
        }
        input, button {
            padding: 10px;
            font-size: 16px;
            margin-top: 5px;
            width: 100%;
            box-sizing: border-box;
        }
        button {
            padding: 10px;
            font-size: 16px;
            width: 100%;
            box-sizing: border-box;
        }
		
		/* Hover effect */
		button:hover {
			opacity: 0.7;
			box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
		}
        .button-container {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        .button-container button {
            flex: 1;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            border: 2px solid black;
        }
        th, td {
            padding: 10px;
            text-align: center;
            border: 1px solid black;
        }
        .total-row td {
            font-weight: bold;
            background-color: #f0f0f0;
        }
        .stats {
            margin-top: 20px;
        }
        .after {
            display: none;
        }
        @media (max-width: 600px) {
            input, button {
                font-size: 14px;
            }
            th, td {
                padding: 8px;
            }
            .container {
                padding: 5px;
            }
        }
		
				.custom-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 300px;
    display: none;
}
		
		#dialogMessage {
			display:block;
		}
		

.custom-dialog .dialog-content {
    text-align: center;
}

.custom-dialog button {
    padding: 8px 16px;
    margin: 10px;
    cursor: pointer;
}

.custom-dialog .dialog-content, .custom-notification .dialog-content {
    display: flex;
    justify-content: space-evenly; /* This will spread the buttons evenly across the container */
}

.custom-dialog button#dialogConfirm, #okayButton {
    background-color: #4CAF50;
    color: white;
    border: none;
}

.custom-dialog button#dialogCancel {
    background-color: #f44336;
    color: white;
    border: none;
}
		
.custom-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 300px;
    display: none;
}

.custom-notification .notification-content {
    margin-bottom: 10px;
}

.custom-notification button {
    padding: 8px 16px;
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
}
