.cost-of-living-calculator-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.cost-of-living-calculator-form {
    background: white;
    border-radius: 0px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cost-of-living-calculator-selects {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.calculator-select-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calculator-select-group label {
    font-weight: bold;
    font-size: 14px;
    line-height: 1.5;
}

.region-combobox {
    position: relative;
}

.region-input {
    border: 1px solid lightgray !important;
    background: white !important;
    color: black !important;
    padding: 10px;
    width: 100%;
    height: unset !important;
    font-size: 18px !important;
    line-height: 1.5 !important;
}

.region-input:hover,
.region-input:focus {
    outline: none;
    border-color: black !important;
}

.region-dropdown {
    display: none;
    position: absolute;
    z-index: 1000;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    background: white;
    border: 1px solid lightgray;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-height: 320px;
    overflow: auto;
}

.region-dropdown.open {
    display: block;
}

.region-group-header {
    font-weight: bold;
    padding: 8px 10px;
    background: #f8f8f8;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.region-item {
    padding: 8px 10px;
    cursor: pointer;
}

.region-item:hover {
    background: #f2f2f2;
}

.region-item-badge {
    color: #242424;
    font-size: 14px;
    margin-left: 6px;
}

.region-empty {
    padding: 10px;
    color: #666;
}

.region-dropdown-footer {
    padding: 6px 10px;
    color: #4d4d4d;
    font-size: 16px;
    display: none;
    border-top: 1px solid #eee;
}

.cost-of-living-calculator-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.calculate-button {
    font-size: 20px;
    border-radius: 0px;
    width: 100%;
}

