.portalWrapper{
	width:100%;
	height:100%;
	display:flex;
	flex-direction: row;
	flex-wrap: nowrap;

}


.portalWrapper .portalMenu {
	width: 300px;
	display: flex;
	background:#283746;
	flex-grow: 0;
	flex-direction: column;
	color:#8594A3;

}
.portalWrapper .portalMenu .accountInfo {
	margin-bottom: 30px;
}
.portalWrapper .portalMenu .accountInfo .accountInfoDiv {
	text-align: center;
	padding-top:10px;
	padding-bottom: 10px;
}
.portalWrapper .portalMenu a {
	padding:20px;
	text-decoration: none;
	color:#8594A3; 

}

.portalWrapper .portalContent {
	flex-grow:1;
	background-color: green;
	display: flex;
	
	flex-direction: column;

}

.portalContent .banner {
	height: 50px;
	flex-grow: 0;
	background:#f8f8f8;
	display: flex;
	flex-direction: row;
}

.portalContent .banner .logoffButton{
    height: 100%;
    width: 80px;
    background: #9a9a9a;
    text-decoration: none;
    text-align: center;
    color: white;
    padding-top: 15px;
    box-sizing: border-box;
    flex-grow: 0;
}

.portalContent .banner h1{
	flex-grow: 1;
}

.portalContent .banner h1{
	font-size: 1.1em;
	font-weight: normal;
	padding-right: 20px;
	padding-left: 20px;
}

.portalContent .content {
	flex-grow: 1;
	background:#f2f2f2;
}




.wrapper {
	width: 900px;
	margin:0 auto;
	margin-top: 40px;
}
.eventWrapper {
	display: flex;
	flex-direction: column;

}
.no_bookings_message {
	 text-align: center;
    font-weight: bold;
    margin-top: 20%;
}
.event {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;	
	background-color: white;
	border-radius: 6px;
	margin-bottom: 30px;

}
.dayBlock{
	display: flex;
	flex-direction: column;
	padding:10px;
	justify-content: center;
	font-size: 1.3em;
	font-weight: bold;
	width: 80px;
	color:white;
	background-color: #006d9e;
	border-radius:6px 0px 0px 6px;
	
}
.dayBlock div {
	text-align:center;

}
.contentBlock {
	padding:10px;
}
.contentBlock h3 {
	margin-top:0px;

}

.candidateForm {
	display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
	padding-bottom: 120px;
}

.candidateForm h2 {
	width:100%;
	text-align: left;
	margin-bottom: 20px;
}

.candidate {
	width: min(100%, 560px);
    /* margin: 3%; */
    margin-bottom: 20px;
    justify-content: right;
    padding: 24px;
    border-radius: 16px;
    background: #ffffff;
    box-sizing: border-box;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	border: 1px solid #e7edf2;
}
.candidate h3 {
	margin-top:0px;
	margin-bottom: 18px;
}
.candidate label {
	display: block;
	margin-top:0px;
	margin-bottom: 8px;
	font-size: 0.85em;
	font-weight: bold;
	text-transform: uppercase;
	color: #4c6072;
}

.candidate input,
.candidate select,
.candidate textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	min-height: 48px;
	border: 1px solid #ced8e1;
	border-radius: 10px;
	background: #ffffff;
}

.candidate input[type="date"] {
	appearance: none;
	-webkit-appearance: none;
}

.candidate input[readonly] {
	background: #f5f8fb;
	color: #455766;
}

.candidate-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 20px;
	align-items: start;
}

.candidate-field {
	min-width: 0;
}
.candidate-field-half {
	grid-column: span 1;
}
.candidate-field-full {
	grid-column: 1 / -1;
}
.candidate-static-value {
	padding: 13px 14px;
	border-radius: 10px;
	background: linear-gradient(135deg, #edf7fc 0%, #f7fbfd 100%);
	border: 1px solid #cfe5f0;
	font-weight: bold;
	color: #006d9e;
}
.candidate-error {
	min-height: 18px;
	margin-bottom: 6px;
	color: #c0392b;
	font-size: 0.85em;
}

.candidate-field .candidate-error + input,
.candidate-field .candidate-error + select {
	margin-top: 0;
}

.bookingFormWrapper2 {
	background: white;
    width: 80%;
    margin: 0 auto;
    padding: 28px;
	border-radius: 18px;
	box-shadow: 0 14px 40px rgba(0,0,0,0.08);
}

.bookingSelectionSummary {
	margin-bottom: 26px;
	padding: 20px 24px;
	border-radius: 16px;
	background: linear-gradient(135deg, #006d9e 0%, #0c88bf 100%);
	color: white;
}

.bookingSelectionMeta {
	font-size: 0.8em;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	opacity: 0.8;
	margin-bottom: 8px;
}

.bookingSelectionValue {
	font-size: 1.4em;
	font-weight: bold;
	margin-bottom: 4px;
}

.bookingSelectionRange {
	font-size: 1em;
	opacity: 0.95;
}

.submitWrapper {
	width: 100%;
	position: sticky;
	bottom: 16px;
	z-index: 20;
	text-align:center;
	margin-top: 0;
	padding: 16px 0 0 0;
	background: linear-gradient(to top, rgba(255,255,255,0.98) 70%, rgba(255,255,255,0));
}

.submitWrapper input {
    padding: 16px 28px;
    border-radius: 999px;
    min-width: 260px;
    font-size: 1.05em;
    font-weight: bold;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, #006d9e 0%, #1296cf 100%);
    display: inline-block;
    color: white;
	border: 0;
	box-shadow: 0 14px 30px rgba(0,109,158,0.28);
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.submitWrapper input:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 34px rgba(0,109,158,0.34);
}


@media (max-width: 900px) {
	.bookingFormWrapper2 {
		width: calc(100% - 40px);
	}
}

@media (max-width: 700px) {
	.candidate-grid {
		grid-template-columns: 1fr;
	}

	.candidate-field-half,
	.candidate-field-full {
		grid-column: 1 / -1;
	}

	.candidate {
		padding: 18px;
	}

	.submitWrapper {
		bottom: 8px;
	}

	.submitWrapper input {
		width: 100%;
		min-width: 0;
	}
}

