
  body {
    background-color: lightgray;
    font-family: Arial, sans-serif;
}

  .container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.header {
    font-size: 24px;
    margin-bottom: 20px;
}

.columns {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.column {
    background: #ddd;
    padding: 15px;
    flex: 1;
    border-radius: 5px;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.row {
    background: white;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.button button {
    font-size: 18px; /* Adjust font size */
    padding: 15px 30px; /* Adjust padding for more space inside the button */
    width: auto; /* Allow the width to adjust based on the content */
    cursor: pointer; /* Change cursor to pointer on hover */
    border-radius: 5px; /* Rounded corners */
    background-color: #9fa9a0; /* Background color */
    color: white; /* Text color */
    border: none; /* Remove border */
    transition: background-color 0.3s; /* Smooth transition for background color */
}

.button button:hover {
    background-color: #495f6b; /* Darker green on hover */
}


.but {
    display: flex;
    justify-content: flex-end;
    width: 100%;  
}
.but button {
    font-size: 18px; /* Adjust font size */
    padding: 15px 30px; /* Adjust padding for more space inside the button */
    width: auto; /* Allow the width to adjust based on the content */
    cursor: pointer; /* Change cursor to pointer on hover */
    border-radius: 5px; /* Rounded corners */
    background-color: #9fa9a0; /* Background color */
    color: white; /* Text color */
    border: none; /* Remove border */
    transition: background-color 0.3s; /* Smooth transition for background color */
}

.but button:hover {
    background-color: #495f6b;  /* Darker green on hover */
}


.tax-header-boxes {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
}

.tax-header-box {
    padding: 10px 20px;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
    flex: 1;
}

.tax-header-box:hover {
    background-color: #ddd;
}

.selected {
    background-color: #555;
    color: white;
}

/* Add any additional styling for the page layout as necessary */

