body {
		background-color: #2c3e50;
		color: white;
      	font-family: Arial, sans-serif;
		width:90%;
	    margin-left:auto;
	    margin-right:auto;
}

option {
	background-color:white;
	color:#333333;
}

select {
	border-radius: 5px;
	padding: 4px;
}

table {
	border-radius: 5px;
	border-collapse: collapse;
	width: 100%;
}

th, td {
	/* border: 1px solid #ddd; */
	padding: 8px;
}

th {
	background-color: #f4f4f4;
	/* text-align: right; */
	position: sticky;
	top: 0;
}

td {
	/* text-align: right; */
}

.borders { 
	border: 1px solid grey; 
	border-radius: 5px;
	color: lightgreen;
}

.noborders { 
	border: none; 
} 

.box {
	height: 30%; /* 60px; *//* Set a height for visibility */
    /* background-color: lightgray; */
	/* display: flex; */
	display: grid;
	grid-template-rows: auto auto; /* Two rows: first for label+input, second for dynamic data */
    /* flex-direction: row; */ /* Stack label and input vertically row vs. column */
	justify-content: center; /* Center vertically */
	align-items: center; /* Center horizontally */
	padding: 10px;
	border-radius: 5px; /* Optional: rounded corners */
	gap: 10px; /* Add spacing between label and input */
}
.pulldowns {
	border: 1px solid white; /* Add borders to see the div */
    width: 20%;
}
		
.first, .second {
	border: 1px solid white; 
    width: 35%; /* These two divs combined will take 80% (40% + 40%) */
}

.third {
	border: 1px solid white; 
    width: 30%;
}

.box label {
	font-weight: bold;
	/* flex-basis: 100%; */ /* Makes the label take the full width in the first row */
}

.box input {
    padding: 5px;
   /* width: 20%; */ /* Adjust input width */
    text-align: center; /* Center text inside input */
}

.form-container {
	/* width: 100%; */ /* Set the width of the parent container */
	/* margin: 50px auto; */ /* Center the parent div */
    /* border: 2px solid black; */ /* Add borders to see the div */
    /* display: flex; */
    /* padding: 20px; */
	border-radius: 5px;
	margin-bottom: 20px; /* Add spacing between the form and the table */
}

.form-container form {
	display: flex;
    /* flex-wrap: wrap; */ /* Allow wrapping for smaller screens */
    gap: 10px; /* Add space between form elements */
    align-items: center; /* Align inputs and labels vertically */
	justify-content: center; /* Center child divs horizontally */
	width: 100%;
	height: 70%; /* was 120px; */
}

.form-container input, .form-container button {
	padding: 5px;
	font-size: 14px;
}

.row1 {
    display: flex;
    justify-content: space-between; /* Ensures label and input stay in one row */
    align-items: center;
    gap: 10px;
}

.mainheader {
	background:#9f9d9a; 
	border: 1px solid grey;
	color: black; 
	font-weight:bold; 
}

.subheader {
	background:#eee; 
	color: black; 
	font-weight:lighter;
}

.note-group {
    border: 1px solid #999;
    border-radius: 6px;
}

.note-group tr:first-child td {
    background: #f6f6f6;
	color: blue;
    font-weight: 600;
}

.note-header td {
    background: #eaeaea;
    font-weight: 600;
    font-size: .9em;
    border-bottom: 1px solid #bbb;
}

.note-line td {
    padding-left: 20px;
    font-size: .85em;
}

.note-continuation {
    font-size: .85em;
    padding-left: 20px;
}

/* hide note lines when collapsed */
.note-group.collapsed .note-line {
    display: none;
}

/* clickable header */
.note-header {
    cursor: pointer;
    user-select: none;
}

/* toggle arrow */
.note-toggle {
    display: inline-block;
    width: 1em;
    margin-right: 6px;
    transition: transform .2s ease;
}

/* rotate arrow when collapsed */
.note-group.collapsed .note-toggle {
    transform: rotate(-90deg);
}

