body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f6f8;
    height: 100%;
}

header {
    background-color: #1976d2;
    color: white;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.content {
    height: 100%;
}

#footer {
    position: relative !important;
    bottom: 0;
    padding-top: 30px;
}

.custom-span {
    font-weight: 400;
    font-size: 16px;
    padding: 7px 14px;
    margin: 20px 0;
    border-radius: 200px;
    color: #0274D4;
    background-color: #0274D41A;
    font-family: 'Inter', sans-serif;
}

.quote-container,
.quote-page {
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background: white;
    border-radius: 8px;
    position: relative;
}

.disclaimer {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    color: #555;
    font-style: italic;
}

.form-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.form-column {
    flex: 1;
    min-width: 300px;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

input[type="number"],
select {
    padding: 8px;
    width: 100%;
    max-width: 300px;
    margin-top: 5px;
    margin-bottom: 10px;
}

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;
}

button {
    background-color: #1976d2;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    margin-top: 15px;
    margin-bottom: 20px;
}

.result {
    margin-top: 30px;
    font-size: 16px;
    padding: 20px;
    border-radius: 5px;
}

.green {
    background-color: #d4edda;
    color: #155724;
}

.red {
    background-color: #f8d7da;
    color: #721c24;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

th,
td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
    font-size: 14px;
}

th {
    background-color: #e3f2fd;
    font-weight: bold;
}

a {
    color: #1976d2;
    font-weight: bold;
    text-decoration: none;
}

.note {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
    font-style: italic;
}