body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0; /* Remove body padding */
}

.calculator-container {
	width:1280px!important;
    width: 100%; /* Full width of the container */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin: 0;
    padding: 20px; /* Optional padding inside the container */
    box-sizing: border-box; /* Include padding in the width */
}

.calculator, .poverty-form {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%; /* Full width for both calculators */
    box-sizing: border-box; /* Ensure padding is included in width */
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    position: static;
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.result, .info-text {
    background-color: #444;
    color: #fff;
    padding: 5px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 4px;
}

.result, .info-text p {
    line-height: 5px;
}

.result p {
    line-height: 5px;
}

/* General styling for input fields */
.input-group input, .input-group select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Specific styling for number input fields */
input[type="number"] {
    padding: 10px !important;
}

input[type="submit"], input[type="reset"] {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"] {
    background-color: #0073aa;
    color: white;
    margin-right: 10px;
}

input[type="submit"]:hover {
    background-color: #005f8a;
}

input[type="reset"] {
    background-color: #f44336;
    color: white;
}

input[type="reset"]:hover {
    background-color: #d32f2f;
}

.buttons {
    display: flex;
    justify-content: flex-start;
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.reset-button {
    background-color: #f44336;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .calculator, .poverty-form {
        width: 100%; /* Full width on smaller screens */
    }

    .two-column {
        width: 100%;
        padding-right: 0;
    }
}
/* Hide the number input arrows (spinner) in most browsers */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* Hide arrows in Firefox */
}