


.page-split {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 2rem;
    width: 100%;
}

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

#unassigned {
	min-height: 100%;
}

#n-buttons,
#day-buttons {

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

#n-buttons {
	gap: 2rem;
}

.n-link {
	cursor: pointer;
	color: var(--dark-blue);
	border-bottom: 2px solid transparent;
	padding-bottom: 0.1rem;
}

.n-link:hover {
	border-bottom: 2px solid var(--dark-blue);
}


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

.add-button {
	padding: 0.5rem;
    background-color: var(--accent-color);
    margin-bottom: 2rem;
	color: var(--text-color);
    cursor: pointer;
}


.day-button-selected {
	background-color: var(--accent-color);
	color: white;
	border: 2px solid var(--text-col);
}


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

.day-events {
	height: 100%;
}


.section-slab {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1rem;
    
}

.section-block {
    padding: 0.5rem 1rem ;
}

.slab {
	display: flex;
	flex-direction: row;
	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: 200px;
	max-width: 200px;
	width: 200px;
	overflow-wrap: break-word;
}

.title-field {
	min-width: 250px;
	max-width: 450px;
	//width: 450px;
	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;
}



