#rsvpTableContainer {
	/*position: relative;*/
}

#rsvpTable {
	margin-left: 0px;
}

#rsvpTable .paginated-table {
	overflow-x: auto;
}

#rsvpTable table {
	width: 100%;
	table-layout: initial;
}

#rsvpTable table, th, td {
	border: none;
}

#rsvpTable tr {
	border-bottom: solid 1px color-mix(in srgb, var(--secondary-color) 30%, transparent);
	background-color: var(--background-color);
}

#rsvpTable tr.header {
	border-bottom: solid 1px color-mix(in srgb, var(--secondary-color) 50%, transparent);
}

#rsvpTable tr.selectable:hover {
	background-color: color-mix(in srgb, var(--secondary-color) 12%, transparent);
}

#rsvpTable tr.selectable.selected {
	background-color: color-mix(in srgb, var(--secondary-color) 30%, transparent);
}

#rsvpTable tr.selectable.selected:hover {
	background-color: color-mix(in srgb, var(--secondary-color) 40%, transparent);
}

#rsvpTable th {
	background-color: var(--background-color);
	color: var(--text-color);
	border: none;
	text-align: left;
	padding-bottom: 12px;
	padding-left: initial;
	padding-right: initial;
}

#rsvpTable td {
	padding-top: 10px;
	padding-bottom: 10px;
}

#rsvpTable table th:not(:last-child), #rsvpTable table td:not(:last-child) {
	white-space: nowrap;
	padding-right: 40px;
}

#rsvpTable table th:last-child, #rsvpTable table td:last-child {
	width: 99%;
}

#rsvpTable .selectionMark {
  display: block;
  position: relative;
  padding-left: 42px;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Create a custom checkbox */
#rsvpTable .checkmark {
	position: relative;
	display: block;
	left: 20px;
	height: 1.375em;
	width: 1.375em;
	border-radius: 50%;
	border: 2px solid transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
#rsvpTable .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

/* Create behavior for selectable-row check boxes */
#rsvpTable tr.selectable:hover .checkmark {
	border: 2px solid var(--text-color);
	background-color: var(--background-color);
}

#rsvpTable tr.selectable .checkmark:hover::after {
	display: block;
	left: 7.5px;
	top: 4px;
	width: 5px;
	height: 10px;
	border: solid color-mix(in srgb, var(--secondary-color) 80%, transparent);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* When the checkbox is checked, add a blue background */
#rsvpTable tr.selectable.selected .checkmark {
  background-color: var(--text-color);
  border: 2px solid var(--text-color);
}

/* Style the checkmark/indicator */
#rsvpTable tr.selectable.selected .checkmark::after {
	display: block;
	left: 7.5px;
	top: 4px;
	width: 5px;
	height: 10px;
	border: solid var(--background-color);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* Create behavior for non-selectable-row check boxes, like the select all box. */
#rsvpTable tr:not(.selectable):hover .checkmark {
	border: 2px solid var(--text-color);
	background-color: var(--background-color);
}

#rsvpTable tr:not(.selectable) .checkmark:hover::after {
	display: block;
	left: 7.5px;
	top: 4px;
	width: 5px;
	height: 10px;
	border: solid color-mix(in srgb, var(--secondary-color) 80%, transparent);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* When the checkbox is checked, add a blue background */
#rsvpTable tr:not(.selectable) .checkmark.selected {
  background-color: var(--text-color);
  border: 2px solid var(--text-color);
}

/* Style the checkmark/indicator */
#rsvpTable tr:not(.selectable) .checkmark.selected::after {
	display: block;
	left: 7.5px;
	top: 4px;
	width: 5px;
	height: 10px;
	border: solid var(--background-color);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

#rsvpTableModal {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 10;
	background-color: color-mix(in srgb, var(--background-color) 50%, transparent);
}

#rsvpTableModal.hidden {
	display: none;
}

#rsvpTableModalTray {
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	min-width: 300px;
	max-width: 600px;
	width: 100%;
	border-left: solid 2px var(--secondary-color);
	padding-left: 20px;
	z-index: 12;
	background-color: var(--background-color);
}

;#rsvpTablePickerBar.tool-tray li {
;	float: right;
;}

#rsvpTablePickerModal {
	position: fixed;
	top: 50px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: 10;
	background-color: color-mix(in srgb, var(--background-color) 50%, transparent);
}

#rsvpTablePickerModal.hidden {
	display: none;
}

#rsvpTablePickerModalBox {
	position: fixed;
	top: 80px;
	right: 80px;
	left: 80px;
	bottom: 80px;
	border: solid 2px var(--secondary-color);
	z-index: 12;
	background-color: var(--background-color);
}

.tool-tray {
	top: 0px;
	left: 0px;
	height: 44px;
	width: 100%;
	border-bottom: solid 1px color-mix(in srgb, var(--secondary-color) 50%, transparent);
}

.tool-tray ul {
	list-style-type: none;
	margin-right: 0px;
	margin-left: 30px;
	margin-top: 8px;
	margin-bottom: 8px;
	padding: 0;
	height: 38px;
	overflow: hidden;
	background-color: var(--background-color);
}

.tool-tray li {
	float: left;
	margin-right: 12px;
}

.tool-tray li.button a {
	display: block;
	border-radius: 4px;
	text-align: center;
	padding: 8px;
	padding-left: 16px;
	padding-right: 16px;
	text-decoration: none;
	color: var(--secondary-color);	
}

.tool-tray li.button a:hover {
	background-color: color-mix(in srgb, var(--secondary-color) 30%, transparent);	
}

.tool-tray li.button.primary a {
	background-color: var(--text-color);
	color: var(--background-color);
}

.tool-tray li.button.primary a:hover {
	background-color: var(--tertiary-color);
}

.tool-tray li.hidden {
	display: none;
}
