.fld-v2-wrapper {
    max-width: 900px;
    margin: 0 auto;
    font-family: system-ui, sans-serif;
    color: #1a1a1a;
}

.fld-v2-form {
    background: #f8f8f8;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 12px;
}

.fld-v2-form label {
    flex: 1 1 100%;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1a1a1a;
}

.fld-v2-input {
    flex: 1 1 60%;
    padding: 10px 12px;
    font-size: 16px;
    line-height: 1.4;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.fld-v2-buttons {
    display: flex;
    gap: 8px;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.fld-v2-button {
    background-color: #00b8e4;
    color: #fff;
    font-size: 16px;
    border: 0;
    border-radius: 4px;
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
    margin: 0
}

.fld-v2-button:hover {
    background-color: #1a1a1a;
}

.fld-v2-result-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 16px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.fld-v2-result-card h2 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.3;
    color: #1a1a1a;
}

.fld-v2-dist-brand,
.fld-v2-dist-address,
.fld-v2-dist-phone,
.fld-v2-dist-email,
.fld-v2-dist-website {
    font-size: 15px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 4px;
    word-wrap: break-word;
}

#fld-v2-map {
    width: 100%;
    height: 350px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-top: 24px;
}

.fld-v2-error {
    color: #fff;
    background: #fecb00;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Responsive layout */
@media (max-width: 600px) {
    .fld-v2-form {
        flex-direction: column;
    }
    .fld-v2-buttons {
        width: 100%;
        justify-content: stretch;
    }
    .fld-v2-button {
        flex: 1;
    }
}
