* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background: #f3f4f6;
    color: #111827;
}

.app-layout {
    display: flex;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.sidebar {
    width: 240px;
    background: linear-gradient(180deg, #071224 0%, #08172f 100%);
    color: white;
    padding: 14px 12px;
    flex-shrink: 0;
    overflow-y: auto;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.sidebar-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-avatar {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: white;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

.sidebar-subtitle {
    font-size: 12px;
    color: #b7c2d6;
    margin-top: 3px;
}

.logo-box {
    background: white;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 18px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.22);
}

.logo-box img {
    width: 100%;
    max-height: 55px;
    object-fit: contain;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu a {
    display: flex;
    align-items: center;
    padding: 13px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    color: #dbeafe;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.2s ease;
}

.menu a:hover,
.menu a.active {
    background: linear-gradient(90deg, #0ea5e9, #2563eb);
    color: white;
    transform: translateX(2px);
}

.page-content {
    flex: 1;
    height: 100vh;
    overflow-y: auto;
    background: #f3f4f6;
    padding: 30px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
}

.admin-header h1,
.page-header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
}

.admin-header p,
.page-header p {
    margin: 6px 0 0 0;
    color: #6b7280;
    font-size: 14px;
}

.table-card {
    background: white;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.button {
    display: inline-flex;
    align-items: center;
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.button:hover {
    background: #1d4ed8;
}

.button.secondary {
    background: #0b172a;
}

.small-button {
    display: inline-flex;
    align-items: center;
    background: #2563eb;
    color: white;
    padding: 8px 11px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.small-button.danger {
    background: #dc2626;
}

.success-box {
    background: #dcfce7;
    color: #166534;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    font-weight: 700;
}

.error-box {
    background: #fee2e2;
    color: #991b1b;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* FORM BASICS */

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.form-grid label,
.form-section label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}

.form-grid input,
.form-section textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    font-size: 13px;
    background: white;
}

.form-grid input:focus,
.form-section textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-section {
    margin-bottom: 28px;
}

.form-section h2 {
    margin: 28px 0 14px 0;
    padding-bottom: 9px;
    border-bottom: 1px solid #e5e7eb;
    font-size: 18px;
}

/* MODERN CHECKBOX GRID */

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.checkbox-item {
    min-height: 44px;
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(0,0,0,0.025);
    cursor: pointer;
    transition: all 0.18s ease;
    color: #0f172a;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.checkbox-item:hover {
    background: #f8fafc;
    border-color: #bfdbfe;
    box-shadow: 0 2px 8px rgba(37,99,235,0.08);
}

.checkbox-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    border: 2px solid #cbd5e1;
    border-radius: 5px;
    background: white;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"]:checked {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 12px;
    font-weight: 900;
    left: 2px;
    top: -2px;
}

/* COVERAGE */

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.coverage-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0,0,0,0.025);
    transition: all 0.18s ease;
}

.coverage-card:hover {
    background: #f8fafc;
    border-color: #bfdbfe;
    box-shadow: 0 2px 8px rgba(37,99,235,0.08);
}

.coverage-card input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    background: white;
    position: relative;
    flex-shrink: 0;
    margin-top: 3px;
}

.coverage-card input[type="radio"]:checked {
    border-color: #2563eb;
}

.coverage-card input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #2563eb;
    border-radius: 50%;
    top: 3px;
    left: 3px;
}

.coverage-card strong {
    display: block;
    font-size: 14px;
    color: #111827;
}

.coverage-card small {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.4;
}

.coverage-detail {
    margin-top: 16px;
    max-width: 420px;
}

.coverage-detail input,
input[name="radius_km"] {
    height: 42px;
    border-radius: 12px;
    border: 1px solid #dbe2ea;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    background: white;
}

/* STATE DROPDOWN */

.state-dropdown {
    position: relative;
}

#stateDropdownButton {
    width: 100%;
    height: 42px;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    background: white;
    text-align: left;
    padding: 0 14px;
    font-weight: 700;
    cursor: pointer;
}

.state-dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1000;
    top: 48px;
    left: 0;
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
    background: white;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    padding: 8px;
}

.state-dropdown-menu.open {
    display: block;
}

.state-dropdown-menu label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
    border-radius: 8px;
    cursor: pointer;
}

.state-dropdown-menu label:hover {
    background: #eff6ff;
}

/* MARKER COLOR SELECT */

.marker-color-row,
.marker-color-field {
    max-width: 420px;
    margin-top: 14px;
}

.marker-color-row label,
.marker-color-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111827;
}

select[name="marker_color"] {
    width: 280px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #dbe2ea;
    background: #ffffff;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 1px 2px rgba(0,0,0,0.025);
    cursor: pointer;
}

select[name="marker_color"]:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
}

textarea[name="notes"] {
    min-height: 90px;
    resize: vertical;
}

/* ADMIN TABLE */

.admin-table-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background: #0b172a;
    color: white;
    text-align: left;
    font-size: 13px;
    padding: 14px;
}

.admin-table td {
    padding: 14px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
    font-size: 14px;
}

.admin-table td span {
    color: #6b7280;
    font-size: 13px;
}

.profile-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.profile-list div {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.profile-list strong {
    color: #0b172a;
    margin-right: 4px;
}

.radius-label {
    display: inline-block;
    background: #eef2ff;
    color: #1d4ed8 !important;
    padding: 6px 8px;
    border-radius: 6px;
    font-weight: 700;
}

.table-actions,
.actions {
    display: flex;
    gap: 10px;
}

.table-actions a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.table-actions .danger-link {
    color: #dc2626;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.status-badge.green {
    background: #dcfce7;
    color: #166534;
}

.status-badge.yellow {
    background: #fef9c3;
    color: #854d0e;
}

.status-badge.red {
    background: #fee2e2;
    color: #991b1b;
}

/* MAP */

.content {
    flex: 1;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
}

.map-search-box {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 430px;
    background: white;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.map-search-box h2 {
    margin: 0 0 14px 0;
    font-size: 19px;
    color: #111827;
}

.search-wrapper {
    position: relative;
}

.search-row {
    display: flex;
    gap: 10px;
}

.search-row input {
    flex: 1;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    font-size: 14px;
    outline: none;
}

.search-row input:focus {
    border-color: #2563eb;
}

.search-row button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 16px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
}

#addressSuggestions {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dbe2ea;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
    z-index: 9999;
    max-height: 260px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 12px 14px;
    font-size: 13px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
}

.suggestion-item:hover {
    background: #eff6ff;
}

.suggestion-item:last-child {
    border-bottom: none;
}

#searchResult {
    margin-top: 14px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;
}

.match-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    margin-top: 12px;
}

.map-result-item {
    display: block;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    margin: 0 0 16px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    line-height: 1.45;
    font-size: 13px;
    color: #334155;
}

.map-result-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #0f172a;
}

.map-result-actions {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.map-result-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    color: white;
}

.map-result-actions a:nth-child(1) {
    background: #2563eb;
}

.map-result-actions a:nth-child(2) {
    background: #111827;
}

.map-result-actions a:nth-child(3) {
    background: #16a34a;
}

.leaflet-top.leaflet-left {
    top: 185px !important;
    left: 22px !important;
}

/* SEARCH PAGE */

.search-form-row {
    display: flex;
    gap: 18px;
    align-items: end;
    max-width: 900px;
    margin-bottom: 24px;
}

.search-address {
    flex: 1;
}

.search-radius {
    width: 220px;
}

.search-form-row label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.search-form-row input {
    width: 100%;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #dbe2ea;
    background: #ffffff;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    box-shadow: 0 1px 2px rgba(0,0,0,0.025);
    transition: all 0.2s ease;
}

.search-form-row input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
    outline: none;
}

@media (max-width: 900px) {
    .app-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
    }

    .page-content {
        height: auto;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .search-form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .search-radius {
        width: 100%;
    }
}
/* PROVIDERS OVERVIEW - PROFESSIONAL CARDS */

.admin-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 260px));
    gap: 14px;
    margin-bottom: 22px;
}

.admin-stats div {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.admin-stats span {
    display: block;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.admin-stats strong {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
    gap: 18px;
}

.provider-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

.provider-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.09);
}

.provider-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #eef2f7;
}

.provider-top h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    color: #0f172a;
}

.provider-top p {
    margin: 6px 0 0 24px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.provider-radius {
    flex-shrink: 0;
    max-width: 220px;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #dbeafe;
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.provider-info {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
    color: #334155;
    font-size: 14px;
    line-height: 1.4;
}

.provider-info strong {
    color: #0f172a;
    font-weight: 900;
}

.provider-note {
    margin-top: 8px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 11px 12px;
}

.provider-block-title {
    margin: 14px 0 8px;
    font-size: 12px;
    font-weight: 900;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.skills-area {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
}

.skill-badge,
.license-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.skill-badge {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #dbeafe;
}

.license-badge {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #dcfce7;
}

.provider-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #eef2f7;
}

.provider-actions .small-button {
    border-radius: 10px;
    padding: 9px 11px;
    font-size: 12px;
    box-shadow: none;
}

.secondary-action {
    background: #2563eb !important;
}

.dark-action {
    background: #111827 !important;
}

.whatsapp-action {
    background: #16a34a !important;
}

.empty-state {
    text-align: center;
    padding: 50px 20px;
}

.empty-state h2 {
    margin-bottom: 8px;
}

.empty-state p {
    color: #6b7280;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .provider-grid {
        grid-template-columns: 1fr;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .provider-top {
        flex-direction: column;
    }

    .provider-radius {
        max-width: 100%;
        text-align: left;
    }
}
/* FIX MAP SUCHFELD */

.map-search-box {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 9999 !important;

    width: 460px !important;
    max-height: calc(100vh - 40px) !important;

    display: flex !important;
    flex-direction: column !important;

    background: white !important;
    border-radius: 18px !important;
    padding: 16px !important;

    box-shadow: 0 10px 28px rgba(0,0,0,0.18) !important;
}

.content {
    position: relative !important;
}

#map {
    width: 100% !important;
    height: 100vh !important;
}
/* MAP SEARCH RESULT PANEL - PROFESSIONAL STYLE */

.map-search-box {
    width: 460px;
    max-height: calc(100vh - 40px);
    display: flex;
    flex-direction: column;
}

#searchResult {
    margin-top: 14px;
    max-height: calc(100vh - 210px);
    overflow-y: auto;
    padding-right: 6px;
}

/* cleaner scrollbar */
#searchResult::-webkit-scrollbar {
    width: 8px;
}

#searchResult::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 999px;
}

#searchResult::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.match-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    margin-top: 12px;
}

.match-box > strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #0f172a;
}

.map-result-item {
    display: block;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 15px;
    margin: 0 0 14px 0;
    box-shadow: 0 3px 12px rgba(15, 23, 42, 0.06);
    font-size: 13px;
    line-height: 1.45;
    color: #334155;
}

.map-result-item strong {
    display: block;
    font-size: 15px;
    line-height: 1.25;
    margin-bottom: 8px;
    color: #0f172a;
}

.map-result-item br {
    line-height: 1.8;
}

.map-result-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-top: 13px;
    padding-top: 12px;
    border-top: 1px solid #eef2f7;
}

.map-result-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    color: white !important;
    white-space: nowrap;
}

.map-result-actions a:nth-child(1) {
    background: #2563eb;
}

.map-result-actions a:nth-child(2) {
    background: #111827;
}

.map-result-actions a:nth-child(3) {
    background: #16a34a;
}

.map-result-actions a:hover {
    opacity: 0.92;
}

/* compact mobile */
@media (max-width: 700px) {
    .map-search-box {
        width: calc(100vw - 24px);
        left: 12px;
        top: 12px;
    }

    .map-result-actions {
        grid-template-columns: 1fr;
    }
}
/* MEHR PLATZ FÜR ERGEBNISLISTE */

.map-search-box {
    height: calc(100vh - 40px) !important;
}

#searchResult {
    flex: 1 !important;
    max-height: unset !important;
    overflow-y: auto !important;
}
/* DYNAMISCHE ERGEBNISLISTE */

.map-search-box {
    max-height: unset !important;
}

#searchResult {
    margin-top: 14px;
    max-height: 70vh !important;
    overflow-y: auto !important;
}

/* scrollbar schöner */
#searchResult::-webkit-scrollbar {
    width: 8px;
}

#searchResult::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}
/* SUCHBOX NUR NACH SUCHE GROSS */

.map-search-box {
    height: auto !important;
    max-height: none !important;
}

.map-search-box.has-results {
    max-height: calc(100vh - 40px) !important;
}

.map-search-box.has-results #searchResult {
    max-height: 70vh !important;
    overflow-y: auto !important;
}

.map-search-box:not(.has-results) #searchResult {
    display: none !important;
}
/* SEARCH PAGE MAP FIX */

#searchMap {
    height: 420px !important;
    min-height: 420px !important;
    width: 100% !important;
    border-radius: 14px !important;
    border: 1px solid #e5e7eb !important;
    margin-top: 14px !important;
}

.search-location-card {
    padding: 18px !important;
}