/*
 * PropFirmMap Layout Styles
 * Base styles previously inline in the layout head.
 * Loaded on all front-end pages.
 */

/* ── Global Link Styling ── */
/* Links inherit color from their parent; specific components set their own colors */
a:hover {
    text-decoration: none;
}

/* ── Button Overrides ── */
.btn-block,
.frmbtn {
    color: white !important;
}

/* ── Legacy Data Cells ── */
.img_data {
    width: 60px !important;
}

.about_img {
    width: 32px !important;
}

/* ── Header Search Bar (non-homepage) ── */
.search-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

#searchInput {
    width: 100%;
    border-radius: 50px;
    padding: 10px 20px;
    border: 2px solid white;
    background-color: white;
    font-size: 16px;
    color: #333;
    z-index: 2;
}

.suggestions {
    position: absolute;
    width: 92%;
    background-color: white;
    border: none;
    border-radius: 10px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    top: 64px;
    left: 16px;
    z-index: 10000;
}

.suggestions li {
    padding: 10px;
    cursor: pointer;
}

.suggestions li:hover {
    background-color: #f1f1f1;
}

/* ── Footer Version Link ── */
.footer-version {
    text-align: center;
    margin-top: 8px;
    font-size: 11px;
}

.footer-version a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    border-bottom: none;
}

.footer-version a:hover {
    color: rgba(255, 255, 255, 0.6);
}
