﻿.autocomplete-wrapper {
    position: relative;
}

.autocomplete-wrapper #here_suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 10;
    display: none;
}

.autocomplete-wrapper #name_suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    z-index: 10;
    display: none;
}

.pa-simple-map {
    width: 100% !important;
    height: 100% !important;
}

.smap-container {
    overflow: hidden;
    height: calc(100% + 90px);
    margin-top: -90px;
    z-index: 1;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #d6e3f5;
}

.dashboard-subtitle {
    font-size: 1.15rem;
    color: #d6e3f5;
    margin-bottom: 5px;
}

    .dashboard-subtitle strong {
        color: #ffc928;
    }

.search-panel,
.specialty-panel,
.region-panel {
    margin-top: 15px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #d6e3f5;
}

    .section-title i {
        color: #58c54d;
        font-size: 1.35rem;
    }

.search-input {
    position: relative;
    margin-bottom: 18px;
}

    .search-input i {
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        color: #7f8da6;
        font-size: 1rem;
    }

    .search-input .form-control {
        height: 50px;
        padding-left: 55px;
        border: none;
        border-radius: 14px;
        font-size: 1rem;
        box-shadow: none;
    }

        .search-input .form-control:focus {
            box-shadow: 0 0 0 .25rem rgba(88,197,77,.20);
        }

.search-divider {
    text-align: center;
    margin: 18px 0;
    color: #d3deef;
    position: relative;
    font-weight: 600;
}

    .search-divider:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        height: 1px;
        background: rgba(255,255,255,.15);
        z-index: 1;
    }

    .search-divider span {
        background: #173359;
        padding: 0 18px;
        position: relative;
        z-index: 2;
    }

.special-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    color: #22354d;
    text-decoration: none;
    border-radius: 16px;
    padding: 20px;
    min-height: 125px;
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    transition: .25s;
}

    .special-card:hover {
        text-decoration: none;
        color: #22354d;
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0,0,0,.28);
    }

.card-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #eef9ec;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .card-icon i {
        color: #3d9b33;
        font-size: 1.8rem;
    }

.card-content {
    flex: 1;
}

    .card-content h6 {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .card-content p {
        color: #5e6f84;
        font-size: .92rem;
        line-height: 1.45;
        margin: 0;
    }

.card-arrow {
    color: #7c8795;
    font-size: 1rem;
}

.view-regions {
    color: #58c54d;
    text-decoration: none;
    font-weight: 700;
}

    .view-regions:hover {
        color: #84dd7b;
    }

.region-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.region-btn {
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.05);
    border-radius: 999px;
    padding: 11px 22px;
    transition: .25s;
    font-size: .95rem;
}

    .region-btn:hover {
        background: #58c54d;
        color: #fff;
        border-color: #58c54d;
        text-decoration: none;
    }

@media (max-width:991px) {

    .save-badge {
        width: 110px;
        height: 110px;
    }

    .dashboard-title {
        font-size: 2.3rem;
    }

    .dashboard-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width:767px) {

    .dashboard-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .special-card {
        min-height: auto;
    }

    .region-buttons {
        gap: 10px;
    }

    .region-btn {
        padding: 10px 16px;
        font-size: .9rem;
    }
}