/*  ======== elements, non dots ============= */
body, html {
	font-family: Arial, sans-serif;
	background-color: #2D4311;
	margin: 0;
	padding: 0;
	height: 100%;
	background-image: url("images/RiverWalk1.png");
	background-size: cover;		
	background-position: center;
	background-repeat: no-repeat;
	font-family: Arial, sans-serif;
    background-attachment: fixed;  /* optional: keeps image fixed while scrolling */
}

a {
	text-decoration: none;
}
a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:active {
	text-decoration: none;
}

form {
	padding: 15px;
}
input[type="text"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="email"],
textarea {
	text-align: left;
	font-size: 15px;
	width: calc(100% - 20px);
	padding: 10px;
	margin-bottom: 6px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
input[type="time"]:hover,
input[type="email"]:hover,
textarea:hover {
	font-size: 15px;
	width: calc(100% - 20px);
	padding: 10px;
	margin-bottom: 6px;
	border: 1px solid #000;
	border-radius: 4px;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="email"]:focus,
textarea:focus {
	background-color: #fcfcd8;
}

input[type="time"]::-webkit-datetime-edit-second-field {
  display: none;
}
input[type="time"]::-webkit-datetime-edit-millisecond-field {
  display: none;
}
input[type="time"]::-webkit-datetime-edit-ampm-field {
  display: none;
}


input[type="submit"] {
	background-color: #007BFF; /* Blue submit button */
	margin: auto;
	color: white;
	border: none;
	padding: 10px 15px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}
input[type="submit"]:hover {
	background-color: #0056b3; /* Darker blue on hover */
}
label {
	color: #00f;
	font-size: 14px;
}
select {
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	outline: none;
	transition: border-color 0.3s;
	width: 170px;
	background-color: #fff;
}
select:hover {
	border-color: #000; /* Change border color on focus */
	border: 1px solid #00f;
}
select:focus {
	border-color: #007BFF; /* Change border color on focus */
	background-color: #fcfcd8;
}
#timer {
	text-align: center;
	width: 225px;
	padding: 9px;
	margin: auto;
	font-size: 15px;
	font-weight: bold;
	font-family: Arial, sans-serif;
	border: 1px dotted #bbb;
	border-radius: 6px;
	background-color: #fff;
}

/* ========= css classes ============ */
.bizNameList {
	text-decoration: none; 
	font-size: 13px; 
	border: 1px solid #00f; 
	border-radius: 4px; 
	padding: 1px 4px; 
	text-align: center; 
	width: 30px;
}
.bizNameList:hover {
	background-color: #1e8418;
	color: #fff;
}
.butEventDiv {
	background-color: #85aeff; 
	width:100%; 
	border: 1px solid #666; 
	padding: 6px; 
	border-radius: 0px;
    box-shadow: 
    inset -2px -2px 3px rgba(255, 255, 255, 0.8),	/* Light source from upper left */
    inset 2px 2px 5px rgba(0, 0, 0, 0.5);			/* Shadow on the opposite side */
}
.butEvent {
	display: inline-block;
	font-size: 13px;
	background-color: #e8f9f8;
	padding: 0px 5px 4px 5px;
	border-radius: 5px;
	color: #0d5403;
	border: 1px solid #327c21;
	margin: 0 4px 0 4px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.butEvent:hover {
	background-color: #0d5403;
	color: #fff;
}
.butEventAt {
	text-decoration: none; 
	margin-top:10px;
}
.butLinks {
	display: inline-block;
	background-color: #e8f9f8;
	border: 0px solid #007bff;
	padding: 4px;
	text-decoration: none;
	text-align: center;
	color: #00f;
	text-shadow: #000;
	border-radius: 7px 7px 0 0;
}
.butLinks:hover {
	background-color: #0d5403;
	color: #fff;
}
.butView {
	width: 90%; 
	height: 80px;
	background-color: #497cfd; 
	color: #fff;
	border: 2px solid #ff0;
	border-radius: 8px;
	font-size: 13px;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
  }
.butView:hover {
	background: #2658b6;
	color: #ff0;
	font-weight: 700;
}
.char-counter {
	display: inline-block;
	float: right;
	font-size: 13px;
	margin-bottom: 0px;
	color: #555;
}
.char-count {
	float: right;
	margin-top: 1px;
	font-size: 14px;
	color: #555;
	color: purple;
}
.circle-container {
	display: flex; /* Display circles in a horizontal line */
	justify-content: center; /* Center circles horizontally */
	flex-wrap: wrap; /* Allow wrapping to the next line if needed */
}
.circle {
	width: 20px; /* Circle size */
	height: 20px; /* Circle size */
	background-color: yellow; /* Circle color */
	border-radius: 50%; /* Make it round */
	display: flex; /* Use flexbox for centering */
	justify-content: center; /* Center horizontally */
	align-items: center; /* Center vertically */
	font-size: 11px; /* Set font size for letters */
	font-weight: bold; /* Bold font style */
	color: black; /* Text color */
	margin: 5px; /* Space between circles */
	border: 1px solid #ff0;
}
.circle:hover {
	box-shadow: rgba(0, 0, 0, 0.3) 0px 11px 11px, rgba(0, 0, 0, 0.22) 0px 5px 2px;	
	background-color: #00f; /* Circle color */
	color: #ff0;
}
.circleSel {
	width: 20px; /* Circle size */
	height: 20px; /* Circle size */
	border-radius: 50%; /* Make it round */
	display: flex; /* Use flexbox for centering */
	justify-content: center; /* Center horizontally */
	align-items: center; /* Center vertically */
	font-size: 11px; /* Set font size for letters */
	font-weight: bold; /* Bold font style */
	margin: 5px; /* Space between circles */
	border: 1px solid #ff0;
	color: #ff0; /* Text color */
	background-color: #00f; /* Circle color */
	box-shadow: rgba(0, 0, 0, 0.3) 0px 11px 11px, rgba(0, 0, 0, 0.22) 0px 5px 2px;	
}
.containerList {
	width: 800px;
	margin: 20px auto;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 8px;
	/* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;	
	overflow: hidden;
}
.container {
	width: 800px;
	margin: 10px auto;
	background-color: #fff;
	border: 8px solid #ccc;
	border-radius: 8px;
	/* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;	
	overflow: hidden;
}
.divBizName {
	margin: auto;
	text-align: center;
	padding: 6px;
	font-size: 25px;
	border: 0px solid #f00;
	background-color: #d9e2ff;
	text-shadow: 1px 1px 1px #fff;
}
.divButFormSave {
	margin: 4px auto; 
	background-color: #fff;
	border: 1px solid #00f; 
	padding: 3px 6px; 
	color: #00f; 
	font-size: 14px; 
	border-radius: 5px;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.divDateSeasonBox {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.divDaysInfo {
	display: inline-block;
	margin: 6px auto; 
	padding: 3px 18px;
	background-color: #fdfaaa;
	width: 24%;
	border-radius: 15px;
	border: 1px solid #bbb;
	font-size: 15px;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
			
.divEvtBut:hover {
	background-color: #00f; 
	color: #fff; 
}
.divDateFooter {
	margin-top: 10px;
	border: 1px solid #a5b6be; 
	background-color: #d7f3fe; 
	color: #0f095b; 
	border-radius: 0 0 9px 9px;
	padding: 3px;
	/* text-shadow: 1px 1px 1px #000; */
}
.divDateSeasonBox {
	border: 1px solid #176c14; 
	border-radius: 10px;
	width: 100%;
	margin-bottom: 5px;
}
.divDateTitle {
	border-radius: 8px 8px 0 0; 
	padding: 5px; 
	font-size: 17px;
	font-weight: 500; 
	text-align: center;
}
.divDateTitlePreColor {
	border: 1px solid #3d7e2b; 
	background-color: #3d7e2b; 
	color: #fff; 
	text-shadow: 1px 1px 1px #000;
}
.divDateTitlePrimeColor {
	border: 1px solid #00f; 
	background-color: #00f; 
	color: #fff; 
	text-shadow: 1px 1px 2px #000;
}
.divDateTitlePostColor {
	border: 1px solid #755d0f; 
	background-color: #755d0f; 
	color: #fff; 
	text-shadow: 1px 1px 2px #000;
}
.divDateTitleOpenColor {
	border: 1px solid #13108A; 
	background-color: #13108A; 
	color: #fff; 
	text-shadow: 1px 1px 1px #ccc;
}
.divDaysInfoExp {
	font-size:14px; 
	text-shadow: 1px 1px 1px #000;
	width: 15px;
}
.divDayOpt {
	border: 2px solid #eee; 
	border-radius: 6px; 
	margin:5px;
}
.divDayOpt:hover {
	background: #fcfbec; 
	border: 2px solid #00f; 
}
.divDayOptPref {
	width: 90%; 
	margin: auto; 
	text-align: center; 
	padding: 7px;
}
.divDayOptTitle {
	text-align: center; 
	background-color: #e5fdfa; 
	padding: 5px;
}
.divEdit {
	margin-bottom: 8px; 
	border: 0px solid #00f; 
	border-radius: 3px; 
	padding: 3px 6px; 
	font-size: 16px; 
	text-decoration: none;
	background: #00f;
	color: #fff;
	float: right;
}
.divEdit:hover {
	background: #0d6c0f;
}
.divEvt {
	border: 1px solid #bbb;
	border-radius: 6px; 
	background-color: #fff; 
	font-size: 15px;
	color: #000;
	text-align: left;
	min-height: 88px;
	margin: 14px;
}
.divEvt:hover {
	border: 1px solid #1a6412;
	background-color: #f1fdfa;
}
.divEvtBut {
	display: inline-block; 
	background-color: #fff;
	border: 1px solid #00f; 
	padding: 3px 6px; 
	color: #00f; 
	font-size: 13px; 
	border-radius: 5px;
	font-weight: 400;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.divLabName {
	background-color: #eee;
	width: 85px;
	border: 0px dotted red;
}

/* =========== */
.containerEvtList {
	display: flex;
	width: 96%;
	margin-bottom: 10px;
	border: 1px solid #aaa;
	border-radius: 6px; 
	background-color: #fff; 
	font-size: 15px;
	color: #000;
	text-align: left;
	min-height: 88px;
	margin: 14px;    
}
.containerEvtList: hover {
	background-color: #e3f2ff;
}	
.evtPart1 {
	width: 4%;
	background: #007bff; /* theme blue */
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px 0 0 5px; 
	border-right: 1px solid #007bff;
}
	
.evtPart1:hover {
	background: #2961c6; /* dark green */
	border-right: 1px solid #000;
}
	
.evtPart2 {
	width: 92%;
	background: #fff;
}
.evtPart2Txt {
	padding: 5px;
}
	
.evtPart3 {
	width: 4%;
	background: #f00;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0 5px 5px 0; 
}
.evtPartALL {
	padding: 0 0 0 10px;
	width: 100%;
	background: #fff;
}
.evtPartPixC {
	border-left: 10px solid #f00;
	float: right;
}
.evtPartPixO {
	border-left: 10px solid #229517;
	float: right;
}
.evtPartNoPixC, evtPartNoPixO {
	width: 275px;
	height: 100px; 
	border: 4px dashed #bbb; 
	float: right;
	color: #919191;
	display: flex;
	justify-content: center;   /* horizontal */
	align-items: center;       /* vertical */
	font-style: italic;
}
.evtPartNoPixC {
	border-left: 10px solid #f00;
}
.evtPartNoPixO {
	border-left: 10px solid #229517;
}
/* =========== */
.divEvtBut:hover {
	background-color: #00f; 
	color: #fff; 
}
.divEvtPix {
	border-radius: 0 5px 5px 0; 
	border: 1px solid #fff;
	height: 86px;
}
.divListBiz {
	margin: 6px auto; 
	color: #000; 
	padding: 4px; 
	background-color: #fff; 
	width: 80%; 
	text-align: center; 
	border-radius: 5px;
	font-size: 18px;
}
.divListInfo {
	margin: 6px auto; 
	color: #00f; 
	padding: 5px; 
	background-color: #e1ebfe; 
	width: 60%; 
	text-align: center; 
	border-radius: 5px;
	font-size: 13px;
}
.divOptButsBK {
	background-color: #007BFF;
	width:100%; 
}
.divOptButs {
	color: #332df8; 
	text-align: center;
	padding: 2px 6px;
	font-size: 24px;
}
.divOptGreen {
	text-align: center;
	padding: 6px; 
	text-shadow: 1px 1px 1px #fff; 
	border-radius: 5px;
	background-color: #dbfcec; 
	border: 1px solid #559b45; 
}
.divOptRed {
	text-align: center;
	padding: 6px; 
	text-shadow: 1px 1px 1px #fff; 
	border-radius: 5px;
	background-color: #f9b9bd; 
	border: 1px solid #ef5057; 
}
.divPix {
	border: 1px solid #ccc;
    width: 196px; /* Set width of the rectangle */
    height: 98px; /* Set height of the rectangle */
    background-color: #fff; /* Background color */
    color: #00f; /* Text color */
    display: flex; /* Enable flexbox on the rectangle */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    text-align: center; /* Center text alignment */
    border-radius: 0px; /* Optional: rounded corners */
    font-size: 16px; /* Font size */
}
.error {
	text-align: center;
	color: red;
	margin: 10px;
	padding: 5px;
}
.footer {
	background-color: #007BFF; /* Blue background */
	color: white; /* White font */
	text-align: center;
	padding: 10px;
	font-size: 18px;
}

.form-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}     
.header {
	background-color: #007BFF; /* Blue background */
	color: white; /* White font */
	text-align: center;
	padding: 20px 20px 10px 20px;
	font-size: 24px;
}
.item {
	border-bottom: 1px solid #ddd;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.item:last-child {
	border-bottom: none; /* No border for the last item */
}
.link-container {
	display: flex;
	justify-content: space-around; /* or "space-between" */
	margin: 0px;
	background-color: #007bff;
}
.link-container a {
	text-decoration: none;
	color: #00f;
	padding: 4px;
	background-color: #e8f9f8;
	border: 1px solid #007bff; /* Optional border */
	border-radius: 7px;
	transition: background-color 0.3s;
	text-align: center;
	text-shadow: #000;
	margin: 4px;
	width: 300px;
}
.link-container a:hover {
	background-color: lightblue; /* Change background on hover */
}
.message {
	text-align: center;
	color: green;
	margin: 10px;
	padding: 5px;
}
.options {
	padding: 20px;
	text-align: center;
}
.option {
	display: block;
	margin: 15px 0;
	background-color: #007BFF; /* Button color */
	color: white;
	text-decoration: none;
	padding: 10px 15px;
	border-radius: 4px;
	font-size: 18px;
}
.option:hover {
	background-color: #0056b3; /* Darker blue on hover */
}
.optionbox {
    height: 23px;
    border: 0px solid black;
	background-color: #fff;  
	color: #0056b3;
	text-decoration: none;
	padding: 5px;
	border-radius: 4px;
	font-size: 15px;
	text-align: center;
}
.optionbox:hover {
	background-color: #0056b3; 
	color: #fff; 
}
.plus {
	color: #fff;
	font-size: 25px;
	text-decoration: none;
}
.rezmsg {
	text-align: center;
	color: green;
	margin: 20px;
}
.subheader {
	width: 70%;
	margin: 5px auto;
	text-align: center;
	padding: 6px;
}
.subheaderDate {
	width: 70%;
	margin: 2px auto;
	text-align: center;
	padding: 6px;
	font-size: 16px;
	color: #ff0;
	text-shadow: 1px 1px 1px #000;
}
.subheaderitem, subheaderitemPik {
	display: inline-block;
	border-radius: 4px;	
	color: white; 				/* White font */
	text-align: center;
	padding: 3px 15px;
	font-size: 15px;
	box-shadow: rgba(0, 0, 0, 0.0) 0px 10px 20px, rgba(0, 0, 0, 0.0) 0px 6px 6px;
}
.subheaderitem {
	background-color: #2665cf;
}
.subheaderitemPik {
	background-color: #4083ae;
}
.subheaderitem:hover {
	background-color: #2f8a32;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.subheaderitem:hover {
	background-color: #2f8a32;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
} 
.tblCols {
	background-color: #dae4fd;
	font-weight: 600;
}
.theDay {
	background:#377924; 
	color:#fff; 
	padding: 0 6px 0 6px;
	border-radius: 3px;
}
.unicode-icon {
	padding:0 3px 0 1px; 
	text-decoration: none; 
	font-size: 16px;
	transition: text-shadow 0.3s ease, transform 0.3s ease;
	position: relative;
}
.unicode-icon:hover {
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); /* Subtle shadow */
	transform: translateY(-2px); /* Slight lift effect */
}
.uniPencil {
	font-size: 50px; /* Adjust as needed */
	/* text-shadow: 2.4px 2.4px 6px rgba(0, 0, 0, 0.5); */ /* 20% larger shadow */
	display: inline-block; /* Allow transformation */
	transition: transform 0.2s; /* Smooth transition */
	font-weight: 700;
}
.uniPencil:hover {
	animation: shake 0.5s; /* Trigger shake on hover */
}
.uniPencilB {
	width: 15px; 
	border: 1px solid #bbb; 
	border-radius: 3px; 
	padding: 2px;
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0) 0px 6px 6px;
}
.uniPencilB:hover {
	box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.33) 0px 6px 6px;
}

@keyframes shake {
	0% { transform: translate(0); }
	25% { transform: translate(-2px, 0); }
	50% { transform: translate(2px, 0); }
	75% { transform: translate(-2px, 0); }
	100% { transform: translate(0); }
}
        
/* ====== unused=========
	.msg {
		text-align: center;
		color: red;
		margin: 10px auto;
	}
*/

/* ====== Search ======== */
.search-container {
	border: 1px solid #f00;
	margin: 20px 10px;
	width: 80%;
	display: flex; /* Use flex to align items in a row */
	align-items: center; /* Center items vertically */
	margin: auto;
}
.search-input {
	padding: 10px 40px; /* Extra padding for icon */
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 16px;
	outline: none;
	transition: border-color 0.3s;
	width: 10px;
}
.search-input:focus {
	border-color: #007BFF; /* Change border color on focus */
}
.search-icon {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #007BFF; /* Icon color */
}
.search-button {
	background-color: #007BFF;
	color: white;
	border: none;
	border-radius: 5px;
	margin-left: 0px; /* Space between input and button */
	cursor: pointer;
	transition: background-color 0.3s;
	background-color: #0056b3; /* Darker blue on hover */
	font-size: 16px;
	width: 90px;
}
.search-button:hover {
	background-color: #1314b2; /* Darker blue on hover */
}

/* Tooltip container */
.tooltip {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

/* Tooltip text */
.tooltip .tooltiptext {
	visibility: hidden;
	width: 170px; /* Width of the tooltip */
	background-color: #555; /* Background color */
	color: #fff; /* Text color */
	text-align: center;
	border-radius: 6px; /* Rounded corners */
	padding: 5px; /* Padding */
	position: absolute;
	z-index: 1;
	bottom: 125%; /* Position above the text */
	left: 50%;
	margin-left: -60px; /* Center horizontally */
	opacity: 0; /* Initial opacity */
	transition: opacity 0.3s; /* Fade effect */
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%; /* At the bottom of the tooltip */
	left: 50%;
	margin-left: -5px; /* Center horizontally */
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent; /* Arrow color */
}

/* Show the tooltip text when hovering */
.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1; /* Fully opaque */
}
/* ========== start file upload ============ */
.upload-container {
	border: 4px dashed #3498db;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	background-color: white;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: border-color 0.3s;
}
.upload-container:hover {
	border-color: #2980b9;
}
.upload-message {
	margin: 10px 0;
	color: #555;
	font-weight: 600;
	font-size: 22px;
	padding: 6px;
}
input[type="file"] {
	display: none;
}
.upload-button {
	padding: 10px 20px;
	background-color: #3498db;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 20px;
	transition: background-color 0.3s;
}
.upload-button:hover {
	background-color: #2980b9;
}
/* ========== end file upload ============ */

.errorDiv {
	width: 425px; /* Specify width */
	background-color: #fffcd9; /* Background color */
	color: #f00; /* Text color */
	text-align: left;
	/* display: flex;  Enable flexbox on child div */
	/* justify-content: center;  Center text horizontally */
	/* align-items: center;  Center text vertically */
	font-size: 15px; /* Font size */
	padding: 10px;
	border: 2px solid #f00;
	border-radius: 8px;
	color: #f00;
}
.msgDiv {
	width: 350px; /* Specify width */
	background-color: #e1fdee; /* Background color */
	color: #18691b; /* Text color */
	justify-content: center;  Center text horizontally */
	align-items: center;  Center text vertically */
	font-size: 15px; /* Font size */
	padding: 15px;
	border: 1px solid #28831e;
	border-radius: 8px;
	display: flex;
	margin: auto;
	margin-bottom: 6px;
}

hr {
	background-color: #00f;
	height: 5px;
	width: 250px; 				/* Width of 50 characters */
	border: 1px solid #00f; 	/* Border style */
	margin: 10 auto; /* Remove default margin */
}
.row{
    display:flex;
    gap:15px;
}

.field{
    flex:1;
}

.field input{
    width:88%;
}

button{
    padding:12px;
    width:96%;
    background:#2c7be5;
    color:white;
    border:0;
    font-size:16px;
    margin: 10px;
}

button:hover{
    background:#1a5fb4;
}
.acctEdit:hover {
	background-color: #ff0;
}