.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 2px solid #ffaf28;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    height: 36px;
    min-width: 60px;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.radio-box input[type="radio"] {
    display: none;
}

.radio-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #ffaf28;
    width: 100%;
    height: 100%;
    padding: 0 14px;
    box-sizing: border-box;
}

.radio-icon {
    width: 16px;
    height: 16px;
    border: 2px solid #ffaf28;
    border-radius: 50%;
    position: relative;
    background-color: white;
    box-sizing: border-box;
}

.radio-box input[type="radio"]:checked + .radio-content {
    background-color: #ffaf28;
    color: white;
}

.radio-box input[type="radio"]:checked + .radio-content .radio-icon {
    border-color: white;
    background-color: white;
}

.radio-box input[type="radio"]:checked + .radio-content .radio-icon::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 6px;
    background-color: #ffaf28;
    border-radius: 50%;
}


.sell-form-dash {
    display: flex;
    align-items: center;
}



.select-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 8px;
}

.select-box {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.select-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.select-label.active {
    color: #ffaf28;
}

.styled-select {
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 6px 24px 6px 6px;
    font-size: 14px;
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='%23ccc' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 6L0.669872 0.75L9.33013 0.75L5 6Z'/%3E%3C/svg%3E") no-repeat right 6px center;
    background-size: 10px 6px;
}

.styled-select.active {
    border-bottom: 2px solid #ffaf28;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='%23ffaf28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 6L0.669872 0.75L9.33013 0.75L5 6Z'/%3E%3C/svg%3E");
}



.sell-form-label-with-unit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.area-converted-group {
    display: flex;
    gap: 4px;
    font-size: 11px;
    color: #f20000;
}

.area-converted-text {
    font-weight: 500;
}

#detailBuyMap {
    margin: 0 -32px;
    height: 200px;
    border-radius: 8px;
}


@media screen and (max-width: 1032px) {
    .sell-form-area-two {
        flex-direction: row;
        gap: 10px;
    }

    #detailBuyMap {
        margin: 0 -20px;
    }
}

