/* Zip Lookup - Frontend Styles (Booknetic native) */

.bkntc_zip_lookup_wrapper {
    background: #FFFFFF;
    border-radius: 2px;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    padding: 20px 25px;
    margin-bottom: 13px;
}

.bkntc_zip_lookup_title {
    font-size: 14px;
    font-weight: 500;
    color: #292D32;
    margin-bottom: 12px;
    line-height: 21px;
}

.bkntc_zip_lookup_search {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.bkntc_zip_lookup_input {
    flex: 1;
    height: 46px;
    padding: 0 15px;
    border: 1px solid #E3EAF3;
    border-radius: 2px;
    font-size: 14px;
    font-family: inherit;
    color: #292D32;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.bkntc_zip_lookup_input::placeholder {
    color: #828F9A;
}

.bkntc_zip_lookup_input:focus {
    border-color: #d3dae2;
    box-shadow: none;
}

.bkntc_zip_lookup_btn,
.bkntc_zip_lookup_clear {
    height: 46px;
    padding: 0 20px;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 250ms ease-in-out;
    white-space: nowrap;
    line-height: 46px;
}

.bkntc_zip_lookup_btn {
    background: #53D56C;
    color: #FFFFFF;
}

.bkntc_zip_lookup_btn:hover {
    opacity: 0.85;
}

.bkntc_zip_lookup_clear {
    background: #F5F7FA;
    color: #626C76;
    border: 1px solid #E3EAF3;
}

.bkntc_zip_lookup_clear:hover {
    background: #E3EAF3;
}

.bkntc_zip_lookup_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bkntc_zip_lookup_tag {
    display: inline-block;
    padding: 6px 14px;
    background: #F5F7FA;
    border: 1px solid #E3EAF3;
    border-radius: 2px;
    font-size: 12px;
    font-family: inherit;
    color: #626C76;
    cursor: pointer;
    transition: all 250ms ease-in-out;
    line-height: 18px;
}

.bkntc_zip_lookup_tag:hover {
    background: #E3EAF3;
    border-color: #d3dae2;
    color: #292D32;
}

.bkntc_zip_lookup_tag_active {
    background: #53D56C;
    border-color: #53D56C;
    color: #FFFFFF;
}

.bkntc_zip_lookup_tag_active:hover {
    background: #53D56C;
    border-color: #53D56C;
    color: #FFFFFF;
    opacity: 0.85;
}

.bkntc_zip_lookup_no_results {
    text-align: center;
    padding: 25px 15px;
    color: #828F9A;
    font-size: 14px;
    line-height: 21px;
}
