.property-tax-calculator-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: linear-gradient(to bottom, #0047AB, #FFFFFF, #228B22); /* Property and government-themed colors */
    color: #000;
}

.property-tax-calculator-container h2 {
    text-align: center;
    color: #0047AB; /* Dark blue for government theme */
}

.property-tax-calculator-container form label {
    display: block;
    margin: 10px 0 5px;
}

.property-tax-calculator-container form input,
.property-tax-calculator-container form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.property-tax-calculator-container form button {
    width: 100%;
    padding: 10px;
    background-color: #0047AB; /* Dark blue for government theme */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.property-tax-calculator-container form button:hover {
    background-color: #228B22; /* Green for property theme */
    color: #000;
}

#property-tax-result {
    margin-top: 20px;
    text-align: center;
    font-size: 1.2em;
    color: #0047AB; /* Dark blue for government theme */
}