
.page-split {
	display: flex;
	flex-direction: horizontal;
	flex-wrap: nowrap;
	gap: 2rem;
}

.days,
.page-half {
	min-width: 775px;
	min-height: 100%;
}

#unassigned {
	min-height: 100%;
}


#day-buttons {

	display: flex;
	flex-direction: horizontal;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 1rem 0;
}

.day-button {
	margin-top: 0;
	margin-bottom: 0;
	min-width: 90px;
	cursor: pointer;
	border: 1px solid #eee;
	padding: 0.5rem;
	background-color: white;
	color: var(--dark-blue);
	border: 2px solid var(--dark-blue);
}

.day-button-selected {
	background-color: var(--dark-blue);
	color: white;
	border: 2px solid var(--dark-blue);
}


.day-container {
	margin-top: 1rem;
	padding: 0.5rem;
	height: 100%;
}

.day-events {
	height: 100%;
}


.section-slab,
.slab {
	display: flex;
	flex-direction: horizontal;
	flex-wrap: nowrap;
	gap: 1rem;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding: 0.5rem;
	border: 1px solid #ccc;
	box-shadow: 0 0 10px 10px #f5f5f5;
	width: fit-content;
}



#sections {
	display: flex;
	flex-direction: horizontal;
	gap: 1rem;
	flex-wrap: wrap;
	max-width: 1500px;
	margin-bottom: 4rem;
}

.section-form {
	width: fit-content;
}


.author-field {
	min-width: 100px;
	max-width: 100px;
	width: 100px;
	overflow-wrap: break-word;
}

.title-field {
	min-width: 300px;
	max-width: 300px;
	width: 300px;
	overflow-wrap: break-word;

}

.name-field {
	width: 100%;
}

.label-field {
	min-width: 365px;
	max-width: 365px;
	width: 365px;
	
}

.name-field input,
.label-field input {
	width: 350px;
	height: 30px;
	font-size: 1rem;
}

.section-field,
.delete-field {
	margin: 0.5rem 0 0 1rem;
	cursor: pointer;	
}

.grab-field {
	cursor: grab;
	padding: 0.5rem 1rem 0  1rem;
}


.picker-container {
	position: relative;
}

.visible-picker,
.section-picker {
	width: 30px;
	height: 30px;
	border: 1px solid #ccc;
	border-radius: 5px;
	cursor: pointer;
}

.section-pickers {
	position: absolute;
	top: 40px;
	left: -0.5rem;
	display: flex;
	gap: 0.5rem;
	width: fit-content;
	background-color: white;
	padding: 0.5rem;
	z-index: 300;
	border: 1px solid #eee;
	box-shadow: 0 0 10px 10px #eee;
}



