body {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    color: #333;
}

.bh-finder-container {
    max-width: 500px;
    padding: 30px;
    border-radius: 5px;
}

.bh-finder-title {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.bh-input-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.bh-input-field {
	    background: white !important;
    border-radius: 7px !important;
    flex: 1;
    padding: 10px;
    height: 25px;
    text-align: center;
    border: 1px solid #ddd;
    font-family: "Century Gothic", sans-serif;
    font-size: 14px;
}

.bh-search-btn {
	background: #004e93 !important;
    border-radius: 7px !important;
    color: white !important;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    cursor: pointer !important;
    font-family: "Century Gothic", sans-serif;
    transition: background-color 0.2s;
}

@media (max-width: 600px) {
    .bh-input-row {
        flex-direction: column;
        gap: 10px;
    }

    .bh-finder-container {
        padding: 20px;
        margin: 20px auto;
    }
	
}
