        body {
            background-color: transparent;
            color: white;
            font-family: Arial, sans-serif;
        }

/* Ensure the table has no extra margin or padding */
table {
    margin: 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
}
        table, th, td {
            border: 1px solid white;
        }
        th, td {
            padding: 8px;
            text-align: left;
        }
        th {
            background-color: rgba(255, 255, 255, 0.2);
        }
		th.sortable {
			cursor: pointer;
			position: relative;
		}

		th.sortable::after {
			content: '▲';
			position: absolute;
			right: 10px;
			top: 50%;
			transform: translateY(-50%);
			font-size: 0.8em;
			color: #aaa;
		}

		th.sortable[data-order="desc"]::after {
			content: '▼';
		}

/* Ensure the summary div has no unnecessary margins or padding */
#summary {
    margin-top: 30px;
    padding: 0;
    font-size: 1em;
    color: white; /* Adjust based on your design */
}

/* Add some space below the summary to separate it from the table */
.roomtable {
    margin-top: 10px; /* Adjust as needed */
}

/* Remove default margin/padding from body and html */
html, body {
    margin: 0;
    padding: 0;
}

/* Styling for the mode toggle buttons */
#mode-toggle {
    margin-bottom: 10px;
}

#mode-toggle button {
    padding: 10px 20px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
}

#mode-toggle button.active {
    background-color: #444;
    color: #fff;
}