.fdrp-search-form,
.fdrp-company-form,
.fdrp-dashboard,
.fdrp-results-wrap,
.fdrp-pricing,
.fdrp-map-wrap {
    box-sizing: border-box;
    width: 100%;
}
.fdrp-search-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 1rem;
    align-items: end;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
}
.fdrp-field label,
.fdrp-company-form label {
    display: block;
    font-weight: 600;
    margin-bottom: .35rem;
}
.fdrp-search-form input,
.fdrp-search-form select,
.fdrp-company-form input,
.fdrp-company-form select,
.fdrp-company-form textarea {
    width: 100%;
    padding: .75rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #fff;
}
.fdrp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    padding: .75rem 1rem;
    border: 0;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
}
.fdrp-button:hover { color: #fff; opacity: .9; }
.fdrp-button-secondary { background: #374151; }
.fdrp-company-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}
.fdrp-company-card,
.fdrp-dashboard-item,
.fdrp-pricing-card,
.fdrp-empty,
.fdrp-notice {
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
}
.fdrp-card-header {
    display: flex;
    gap: .75rem;
    justify-content: space-between;
    align-items: flex-start;
}
.fdrp-company-card h3 { margin: 0 0 .5rem; }
.fdrp-badges { display: flex; flex-wrap: wrap; gap: .35rem; }
.fdrp-badge {
    display: inline-flex;
    border-radius: 999px;
    padding: .2rem .55rem;
    font-size: .8rem;
    background: #f3f4f6;
}
.fdrp-badge-premium { background: #fef3c7; }
.fdrp-badge-plus { background: #dbeafe; }
.fdrp-badge-verified { background: #dcfce7; }
.fdrp-card-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .75rem; }
.fdrp-plan-options,
.fdrp-pricing,
.fdrp-dashboard-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.fdrp-plan-option {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1rem;
}
.fdrp-company-form {
    display: grid;
    gap: 1rem;
}
.fdrp-company-form h3 { margin-top: 1.25rem; }
.fdrp-checkbox { display: flex !important; gap: .5rem; align-items: flex-start; }
.fdrp-checkbox input { width: auto; margin-top: .2rem; }
.fdrp-success { border-color: #86efac; background: #f0fdf4; }
.fdrp-error { border-color: #fca5a5; background: #fef2f2; }
.fdrp-map {
    min-height: 380px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}
.fdrp-place-field { position: relative; }
.fdrp-place-suggestions {
    position: absolute;
    z-index: 10;
    background: #fff;
    border: 1px solid #e5e7eb;
    width: 100%;
    max-height: 220px;
    overflow-y: auto;
    display: none;
}
.fdrp-place-suggestion { padding: .6rem; cursor: pointer; }
.fdrp-place-suggestion:hover { background: #f3f4f6; }
@media (max-width: 900px) {
    .fdrp-search-form { grid-template-columns: 1fr; }
}
.fdrp-section-help,
.fdrp-field-help,
.fdrp-help {
    color: #4b5563;
    font-size: .95rem;
    line-height: 1.5;
}
.fdrp-field-help {
    display: block;
    margin: .15rem 0 .35rem;
    font-weight: 400;
}
.fdrp-plan-option small {
    display: block;
    margin-top: .35rem;
    color: #4b5563;
    font-weight: 400;
}
