body {
    font-family: Arial, sans-serif;
	font-size: 12px;
    background-color: #A6B490;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    margin: 30px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.container .instructions {
    font-size: 14px;
    margin-bottom: 20px;
    color: #444;
    text-align: center;
}

.container h3 {
    margin-top:30px;
    margin-bottom: 10px;
}

.boxes {
	display: flex;
    flex-wrap: wrap;
	flex-direction: row;
}

.boxes > div.box {
  display: flex; 
  flex-basis: calc(50% - 40px); 
  flex-direction: column;
  padding: 10px;
  border: 1px solid #ddd;
}

.boxes > div.box > div.box {
  display: flex; 
  justify-content: center;
  flex-direction: row;
}

.container table td,
.container table th {
    padding: 5px;
    margin-bottom: 15px;
    border: 1px solid #333333;
}
.container table {
   border-collapse: collapse;   
}

h1 {
    text-align: center;
}

form {
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 11px;
}

form input, form select {
    float:left;
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 11px;
}

form button {
    float:left;
    padding: 8px 14px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #218838;
}

.homelink {
    padding: 20px 0 0 20px;
    color: #324516;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 9px;
    cursor: pointer;
}

.amount_input {
    width: 76px;
};

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

ul li a {
    color: #dc3545;
    text-decoration: none;
}