	body {
		font-family: Arial, sans-serif;
		margin: 0;
		padding: 0px;
		background-color: #f4f4f4;
		text-align: center;
	}

	.container {
		max-width: 700px;
		margin: auto;
		background: white;
		padding: 20px;
		border-radius: 0px;
		box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	}
	
	#attendance {
		margin-bottom: 0px;
	}
	#serviceTitle {
		margin-top: 3px;
		margin-bottom: 3px; 
	}
	#serviceDate {
		margin-top: 0px;
	}		
	
	/* Fix result area height to prevent layout shift */
	#searchResult {
		text-align: center;
		min-height: 110px; /* enough to hold name and locale */
		margin-bottom: 15px;
	}

	#displayIDLocale {
		font-size: 25px;
		margin: 5px 0;
		min-height: 24px;
	}

	#resultName {
		font-size: 30px;
		margin: 5px 0;
		min-height: 36px;
		color: blue;
	}

	p {
		font-size: 18px;
	}

	select, input[type="submit"] {
		width: 100%;
		padding: 12px;
		margin-top: 15px;
		font-size: 16px;
		border-radius: 8px;
		border: 1px solid #ccc;
		box-sizing: border-box;
	}
	
	#searchIDName{
		width: 80%;
		padding: 12px;
		font-size: 24px;
		border: 1px solid #ccc;
		border-radius: 8px;
		box-sizing: border-box;
		
		text-align: center;

		margin-top: 8px;
		margin-bottom: 15px;
		pointer-events: none;
		user-select: none;
	}
	
	.search-bar {
		display: flex;
		gap: 10px;
		margin-bottom: 15px;
	}
	.search-bar input[type="text"] {
		flex: 1;
		padding: 10px;
		font-size: 16px;
		border: 1px solid #ccc;
		border-radius: 8px;
		box-sizing: border-box;
	}
	.search-bar button {
		padding: 10px 16px;
		font-size: 16px;
		background-color: #007bff;
		color: white;
		border: none;
		border-radius: 8px;
		cursor: pointer;
	}
	.search-bar button:hover {
		background-color: #0069d9;
	}
	
	input[type="submit"] {
		background-color: #007bff;
		color: white;
		border: none;
	}
	
	input[type="submit"]:hover {
	  background-color: #0069d9; /* slightly darker on hover */
	}
	
	table {
		width: 100%;
		margin-top: 0px;
		border-collapse: collapse;
		font-size: 14px;
	}
	th, td {
		padding: 10px;
		border: 1px solid #ddd;
	}
	th {
		background-color: #f0f0f0;
	}
	.small {
		font-size: 14px;
	}
	.live-row {
		background-color: #d4edda;
	}
	
	.button-row {
		display: flex;
		justify-content: space-between;
		margin-bottom: 15px;
	}
	.button-row button {
		width: 80px;
		padding: 8px 16px;
		font-size: 12px;
		border: none;
		border-radius: 4px;
		background-color: #4285f4;
		color: white;
		cursor: pointer;
	}
	.button-row button:hover {
	  background-color: #0069d9;
	}
	
	
	.button-clock {
		display: flex;
		justify-content: space-between;
		margin-bottom: 15px;
	}
	.button-clock button {
		width: 80px;
		padding: 8px 16px;
		font-size: 12px;
		border: none;
		border-radius: 4px;
		background-color: #4285f4;
		color: white;
		cursor: pointer;
	}
	.button-clock button:hover {
	  background-color: #0069d9;
	}
	
	#liveClock {
		font-family: 'Roboto Mono', monospace;
		font-size: 18px;
		font-weight: 500;
		background-color: #4285f4;
		color: white;
		padding: 5px 10px;
		border-radius: 5px;
	}

