body {
			background: #ffffff;
			margin: 0;
			padding: 20px;
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
		}

		.search-container {
			max-width: 600px;
			margin: 20px auto;
			text-align: center;
		}

		#searchInput {
			width: 100%;
			max-width: 500px;
			padding: 16px 24px;
			font-size: 16px;
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
			border: none;
			border-radius: 25px;
			background: rgba(255, 255, 255, 0.95);
			backdrop-filter: blur(20px);
			-webkit-backdrop-filter: blur(20px);
			box-shadow: 
				0 8px 32px rgba(0, 0, 0, 0.08),
				0 2px 8px rgba(0, 0, 0, 0.04),
				0 0 0 1px rgba(0, 0, 0, 0.1);
			border: 1px solid rgba(0, 0, 0, 0.1);
			outline: none;
			transition: all 0.3s ease;
		}

		#searchInput:focus {
			box-shadow: 
				0 12px 40px rgba(0, 0, 0, 0.12),
				0 4px 12px rgba(0, 0, 0, 0.08),
				0 0 0 2px rgba(0, 123, 255, 0.3);
			transform: translateY(-2px);
		}

		#searchInput::placeholder {
			color: rgba(0, 0, 0, 0.5);
		}

		table {
			border-collapse: separate;
			border-spacing: 0;
			margin: 20px auto;
			font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
			font-size: 12px;
			background: rgba(255, 255, 255, 0.95);
			backdrop-filter: blur(20px);
			-webkit-backdrop-filter: blur(20px);
			border-radius: 20px;
			overflow: hidden;
			box-shadow: 
				0 8px 32px rgba(0, 0, 0, 0.08),
				0 2px 8px rgba(0, 0, 0, 0.04),
				0 0 0 1px rgba(0, 0, 0, 0.1);
			border: 1px solid rgba(0, 0, 0, 0.1);
		}

		table td {
			border: none;
			border-right: 1px solid rgba(0, 0, 0, 0.1);
			border-bottom: 1px solid rgba(0, 0, 0, 0.1);
			padding: 8px 12px;
			text-align: left;
			vertical-align: middle;
			color: #000000;
			font-weight: 400;
		}

		table td:last-child {
			border-right: none;
		}

		table tr:last-child td {
			border-bottom: none;
		}

		table .header {
			background-color: #ffffff;
			font-weight: bold;
			text-align: center;
			color: #000000;
		}

		table .section-header {
			background-color: #ffffff;
			font-weight: bold;
			text-align: center;
			color: #000000;
		}

		table .gray-row {
			background-color: #f1f1f1;
			transition: all 0.2s ease;
		}

		table .white-row {
			background-color: #ffffff;
			transition: all 0.2s ease;
		}

		table .gray-row:hover,
		table .white-row:hover {
			background-color: rgba(0, 0, 0, 0.03);
			transform: translateY(-1px);
		}

		table .center {
			text-align: center;
		}

		table .left {
			text-align: left;
		}

		/* First row gets top rounded corners */
		table tr:first-child td:first-child {
			border-top-left-radius: 20px;
		}

		table tr:first-child td:last-child {
			border-top-right-radius: 20px;
		}

		/* Last row gets bottom rounded corners */
		table tr:last-child td:first-child {
			border-bottom-left-radius: 20px;
		}

		table tr:last-child td:last-child {
			border-bottom-right-radius: 20px;
		}

		.hidden {
			display: none;
		}

		.no-results {
			text-align: center;
			padding: 40px;
			color: rgba(0, 0, 0, 0.6);
			font-style: italic;
		}