a {
	text-decoration: underline;
}

p {
	font-size: 14px;
	font-weight: 400;
}

p a {
	text-decoration: underline !important;
	color: #135E96 !important;
}

textarea {
	width: 100%;
}

/*Styles for UI*/
.btn-wrapper {

	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	gap: 10px;
}

.btn-wrapper.align-right {
	justify-content: flex-end;
}

.btn {
	box-sizing: border-box;
	padding: 10px 15px;
	font-size: 14px;
	border-radius: 100px;
	color: #ffffff;
	background: #00CBE4;
	transition: all 0.3s;
	border: 1px solid #00CBE4;
	width: fit-content;
	cursor: pointer;
	font-weight: 700;
}

.btn:hover {
	color: #00CBE4;
	background: #ffffff;
}

.btn.yellow {
	background: #FDC500;
	border: 1px solid #FDC500;
}

.btn.yellow:hover {
	background: #ffffff;
	color: #FDC500;
	border: 1px solid #FDC500;
}

.btn#create-map {
	padding: 12px 40px;
}

#upload-image-button {
	box-sizing: border-box;
	padding: 6px 14px;
	font-size: 14px;
	border-radius: 100px;
	color: #ffffff;
	background: #00CBE4;
	transition: all 0.3s;
	border: 1px solid #00CBE4;
	width: fit-content;
	cursor: pointer;
	font-weight: 700;
}

#upload-image-button:hover {
	color: #00CBE4;
	background: #ffffff;
}


#clear-image-button {
	box-sizing: border-box;
	padding: 6px 14px;
	font-size: 14px;
	border-radius: 100px;
	color: #ffffff;
	background: #00CBE4;
	transition: all 0.3s;
	border: 1px solid #00CBE4;
	width: fit-content;
	cursor: pointer;
	font-weight: 700;
}

#clear-image-button:hover {
	color: #00CBE4;
	background: #ffffff;
}

.btn-group-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin-bottom: 12px;
}


.notification-wrapper {
	display: none;
	position: relative;
	background: #CAEACB;
	box-sizing: border-box;
	padding: 5px 7px 5px 30px;
	margin-bottom: 16px;
}

.notification-wrapper:before {
	content: '';
	background: url(../images/tick-icon.png) no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
	display: block;
	position: absolute;
	top: 6px;
	left: 7px;
}

.notification-wrapper .message {
	font-weight: bold;
	color: #3EB049;
	font-size: 12px;
	margin: 0;
}

.notification-wrapper .close-btn {
	position: absolute;
	top: 3px;
	right: 12px;
	font-size: 22px;
	cursor: pointer;
}

.notification-wrapper.active {
	display: block;
}

.banner-wrapper .flex-wrapper {
	display: flex;
	flex-direction: row;
	background: #ffffff;
	box-sizing: border-box;
	border-radius: 10px;
	padding: 16px 18px 0 18px;
	gap: 12px;
}

.banner-wrapper .flex-wrapper .left-wrapper img {
	max-width: 59px;
	width: 100%;
}

.banner-wrapper .flex-wrapper .right-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.banner-wrapper .flex-wrapper .right-wrapper h1 {
	font-weight: 400;
	font-size: 24px;
	padding: 0;
}

.about-txt {
	margin: 24px 0
}


/* Styles for the admin page tabs */
#tabs {
	margin-top: 20px;
	padding: 0;
	border-top: none !important;
	background: unset !important;
}

#tabs ul {
	padding: 0;
	list-style: none;
	background: unset;
	border-top: none;
	border-left: none;
	display: flex;
	flex-direction: row;
	gap: 24px;
}

#tabs li {
	display: inline;
	margin-right: 0;
	background: unset;
	border-bottom: none;
}

#tabs .tab-links {
	margin-bottom: 12px;
}

#tabs .tab-links a:focus {
	box-shadow: none;
}

#tabs li.ui-tabs-active {
	background: #d7d7d7;
}

#tabs .tab-links a {
	text-decoration: none;
	color: #5C5C5C;
	font-size: 13px;
	font-weight: 700;
	transition: all 0.3s;
	box-sizing: border-box;
	padding: 2px 5px 2px 5px;
	display: block;

}

.tab-inner-wrapper .tab-links>li {
	position: relative;
	top: 3px;
}

.tab-inner-wrapper .tab-links>li a {
	font-size: 12px !important;
	font-weight: 700 !important;
}

.tab-inner-wrapper .tab-links>li.active {
	top: 0;
}

.tab-inner-wrapper li.active a {
	padding: 4px 12px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

#tabs .ui-tabs-active a {
	color: #000000;
	font-weight: bold;

}

#tabs li:hover {
	background: transparent;
}


#tabs .tab-links a:hover {
	color: #00CBE4 !important;
}

.tab-inner-wrapper .tab-links {
	margin: 0 24px 0 24px;
	margin-bottom: 0 !important;
	background: #ffffff !important;

}

.tab-inner-wrapper .tab-links a {
	box-sizing: border-box;
	padding: 3.5px 11.5px;
	box-sizing: border-box;
	border-top: 1px solid #E8E8E8;
	border-left: 1px solid #E8E8E8;
	border-right: 1px solid #E8E8E8;
	position: relative;
}

.tab-inner-wrapper .tab-links a:after {
	content: '';
	height: 3px;
	background: #ffffff;
	display: block;
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100%;
}

.tab-inner-wrapper .tab-links li.active a {
	border-bottom: none;
}

.tab-inner-wrapper .tab-links {
	gap: 6.5px !important;
}

.tab-inner-wrapper .tab {
	box-sizing: border-box;
	padding: 24px 96px 24px 24px;
	border-top: 1px solid #E8E8E8;
	overflow: hidden;
}


.tabs {
	margin: 20px;
}

.tab-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tab-links li {
	display: inline-block;
	margin-bottom: 0;
}

.tab-links li.active a {
	font-weight: bold;
	color: #00CBE4 !important;
	background: transparent;
	border-bottom: 3px solid #00CBE4;
}

.tab-content {
	border: 1px solid #ccc;
	padding: 20px;
	background: white;
}

.tab {
	display: none;
	background: white;
	border-radius: 10px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.11);
	margin-bottom: 99px;

}

.tab.active {
	display: block;
}





#tabs .ui-tabs-panel {
	padding: 10px;
	border: 1px solid #ccc;
	background: #fff;
}

.tab-inner-nav-wrapper {
	box-sizing: border-box;
	padding: 24px 24px 0 24px;
}

.tab-inner-nav-wrapper h2 {
	font-size: 20px;
	margin-bottom: 26px;
	margin-top: 0;
	color: #1F1F1F;
	font-size: 20px;
	font-weight: 700;

}

.tab-inner-wrapper {
	box-sizing: border-box;
	padding: 24px 0 0 0;
}

.tab-inner-wrapper {
	padding: 24px;
}

#tab-3 .tab-inner-wrapper {
	padding: 24px;
}

.subheading {
	color: #5C5C5C;
	font-weight: 700;
	font-size: 14px;
	border-bottom: 1px solid #000000;
	box-sizing: border-box;
	padding-bottom: 8px;
	margin-top: 0;
}

.subheading strong {
	color: #5C5C5C;
	font-weight: 700;
}

ol {
	margin-bottom: 24px;
	margin-left: 20px;
}

ol li {
	font-size: 14px;
	color: #5C5C5C;
	display: list-item !important;
}

ol.numeric {
	list-style-type: decimal;
}

ol.alpha {
	list-style-type: lower-alpha;
}

ol li ol {
	margin-top: 10px;
}

.note {
	margin-bottom: 24px;
}

#tab-3 .tab-inner-wrapper p:first-child {
	margin-top: 0;
}

.instructions-wrapper {
	box-sizing: border-box;
	padding: 20px;
	background: #f1f1f1;
	margin-bottom: 50px;

}

.instructions-wrapper h3 {
	margin-top: 0;
}

.instructions-wrapper ol {
	list-style-type: decimal;
	margin: 20px 0 0 0;
	padding-left: 0;
	font-size: 14px;
}

.instructions-wrapper ol li {
	margin-bottom: 10px;
	display: block !important;
	border: none !important;
}

.instructions-wrapper ol li:hover {
	background: unset !important;
}

.instructions-wrapper ol {
	counter-reset: list-counter;
}

.instructions-wrapper ol li::before {
	counter-increment: list-counter;
	content: counter(list-counter) ". ";
	font-weight: bold;
	color: #000000;
	margin-right: 10px;
}

.field-wrapper {
	margin-bottom: 16px;
}

.field-wrapper input {
	width: 100%;
}

.error-message {
	padding: 8px 0;
}



/*Table*/
table {
	border-collapse: collapse;
	width: 100%;
}

.form-table {
	margin-bottom: 24px;

}

td,
th {
	border: none;
	text-align: left;
	padding: 8px;
}


.back-btn {
	text-decoration: underline !important;
	cursor: pointer !important;
	color: blue !important;
	text-underline-offset: 3px !important;
	display: block !important;
	margin-bottom: 30px !important;
	margin-top: 30px !important;
}


.action-wrapper button {
	margin-right: 30px;
}

.maintenance-message {
    background-color: #f9f9f9;
    color: #333333;
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #dcdcdc;
    font-size: 16px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    line-height: 1.4;
    font-weight: bold;
}
body.maintenance-active {
    padding-top: 50px;
}

.admin-bar .maintenance-message {
    top: 32px;
}

.maintenance-message .tape-content {
    display: inline-block;
    white-space: nowrap;
}

@keyframes ticker-tape {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 1024px) {
    .maintenance-message {
        font-size: 14px;
        padding: 8px 0;
    }
    .maintenance-message .tape-content {
		animation: ticker-tape 15s linear infinite;    
	}
}

@media (max-width: 768px) {
	.admin-bar .maintenance-message {
		top: 46px;
	}
}