		body {
			font-family: 'Arial', sans-serif;
			background-color: #f9f9f9;
			color: #333;
			margin: 0;
			padding: 0;
		}

		.container {
			max-width: 96%;
			margin: 15px auto;
			background: #ffffff;
			border-radius: 6px;
			box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
			padding: 10px;
		}

		h1 {
			text-align: center;
			color: #007bff;
			margin-top: 10px;
			margin-bottom: 5px;
			font-size: 20px;
		}

		h2 {
			margin-top: 7px;
			font-size: 18px;
		}
		
		form {
			display: flex;
			flex-direction: column;
			gap: 8px;
			margin-bottom: 8px;
		}

		label {
			font-weight: bold;
			font-size: 14px;
		}

		textarea {
			padding: 8px;
			font-size: 14px;
			border: 1px solid #ccc;
			border-radius: 4px;
			min-height: 50px;
		}

		button {
			background-color: #007bff;
			color: white;
			font-size: 14px;
			padding: 4px;
			border: none;
			border-radius: 4px;
			cursor: pointer;
			transition: background-color 0.3s ease;
		}

		button:hover {
			background-color: #0056b3;
		}

		.transaction-details {
			margin-top: 10px;
			border: 1px solid #ddd;
			border-radius: 6px;
			padding: 12px;
			margin-bottom: 10px;
		}

		.summary {
			display: flex;
			flex-wrap: wrap;
			gap: 1px;
			margin-top: 8px;
			margin-bottom: 8px;
		}

		.summary p {
			background: #f7f7f7;
			border-left: 4px solid #007bff;
			padding: 4px;
			border-radius: 4px;
			flex: 1 1 calc(50% - 6px);
			font-size: 14px;
			margin: 0;
		}

		table {
			width: 100%;
			border-collapse: collapse;
			margin-top: 12px;
			background: #fff;
			font-size: 14px;
			box-shadow: 0 6px 3px rgba(0, 0, 0, 0.1);
			border-radius: 6px;
			overflow: hidden;
		}

		th, td {
			padding: 4px 4px;
			text-align: center;
		}

		th {
			background: #007bff;
			color: white;
			font-size: 14px;
		}

		tr:nth-child(even) {
			background-color: #f9f9f9;
		}

		tr:hover {
			background-color: #f1f1f1;
		}

		.filter-amounts {
			position: left;

			display: inline-block;
		}

		.dropdown-button {
			background-color: #007bff;
			color: white;
			border: none;
			padding: 3px 12px;
			border-radius: 4px;
			cursor: pointer;
		}

		.dropdown-menu {
			display: none;
			position: absolute;
			background-color: white;
			color: black;
			border: 1px solid #ccc;
			border-radius: 4px;
			margin-top: 3px;
			min-width: auto;
			max-height: 200px;
			overflow-y: auto;
			z-index: 1000;
			box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
			padding: 4px;
		}

		.dropdown-menu.show {
			display: block;
		}

		.dropdown-item {
			display: flex;
			align-items: center;
			padding: 6px;
			cursor: pointer;
		}

		.dropdown-item input {
			margin-right: 8px;
		}

		.dropdown-buttons {
			display: flex;
			justify-content: space-between;
			margin-top: 8px;
		}

		.reset-button,
		.select-button {
			background-color: #007bff;
			color: white;
			border: none;
			padding: 6px 12px;
			border-radius: 4px;
			cursor: pointer;
		}

		.reset-button {
			background-color: #dc3545; /* Red for reset */
		}

		.reset-button:hover,
		.select-button:hover {
			opacity: 0.9;
		}

		::-webkit-scrollbar {
			width: 12px; 
		}

		::-webkit-scrollbar-thumb {
			background-color: #007bff;
			border-radius: 10px;
		}

		::-webkit-scrollbar-track {
			background-color: #f1f1f1;
			border-radius: 10px;
		}

		::-webkit-scrollbar-thumb:hover {
			background-color: #0056b3;
		}
		.watermark {
			position: fixed;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			font-size: 62px;
			font-weight: bold;
			text-align: center;
			color: rgba(0, 0, 0, 0.4); /* 0.25 opacity */
			z-index: 1;
			pointer-events: none;  /* allow clicking through */
			white-space: pre-line; /* allow the line break */
			user-select: none;
		}
