body {
	background: #100340;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	flex-direction: column;
}

*{
	font-family: sans-serif;
	box-sizing: border-box;
}

form {
	width: 600px;
	border: 2px solid #ccc;
	padding: 30px;
	background: #fff;
	border-radius: 15px;
}

.form-row {
    display: flex;
    justify-content: space-between;
}

.form-column {
    flex: 1; /* Each column takes up equal space */
    margin-right: 10px; /* Optional spacing between columns */
}

h2 {
	text-align: center;
	margin-bottom: 40px;
}

input,
select { /* Add select here */
    display: block;
    border: 2px solid #ccc;
    width: 95%;
    padding: 10px;
    margin: 10px auto;
    border-radius: 5px;
}

label {
    color: #888;
    font-size: 18px;
    padding: 10px;
}

button {
	float: right;
	background: #555;
	padding: 10px 15px;
	color: #fff;
	border-radius: 5px;
	margin-right: 10px;
	border: none;
}
button:hover{
	opacity: .7;
}
.error {
   background: #F2DEDE;
   color: #A94442;
   padding: 10px;
   width: 95%;
   border-radius: 5px;
   margin: 20px auto;
}

.success {
   background: #D4EDDA;
   color: #40754C;
   padding: 10px;
   width: 95%;
   border-radius: 5px;
   margin: 20px auto;
}

h1 {
	text-align: center;
	color: #fff;
}

.ca {
	font-size: 14px;
	display: inline-block;
	padding: 10px;
	text-decoration: none;
	color: #444;
}
.ca:hover {
	text-decoration: underline;
} 

.center-align {
    display: flex;
    justify-content: center;
}

.left-align {
    display: flex;
    justify-content: left;
}

.chart-legend-callout {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    background-color: white;
    position: absolute; /* Adjust position as needed */
    top: 50px; /* Adjust position as needed */
    right: 50px; /* Adjust position as needed */
    z-index: 1000;
}
/* Optional: Style for the arrow pointing to the chart */
.chart-legend-callout:after {
    content: '';
    position: absolute;
    border-style: solid;
    /* Adjust the following as per the arrow's position and size */
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-color: #fff transparent transparent transparent;
}

.small-font {
    font-size: 8px; /* Or any other size you prefer */
}

