/* Styles the legacy pages carried in inline <style> blocks, moved to an
   external sheet per the project rule (no inline/internal CSS). */

/* Auth pages (user/login.php) */
.linee {
    display: table;
    width: 100%;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.linee:after {
    position: absolute;
    content: '';
    width: 70%;
    height: 1px;
    background: #7c7c7c;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: -1;
}

.linee span {
    background: white;
    padding: 0 10px;
}

.heading {
    text-align: center;
    margin-bottom: 20px;
}

img.icons {
    height: 25px;
}

.account-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.account-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 18px;
}

/* Service detail (service_detail.php) */
.card-container {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.card-container .buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.star-gold {
    font-size: 16px;
    color: gold;
    margin-left: 3px;
}

.detail-form-band {
    background: #f0f5fe;
    padding: 40px 0;
}

.variation-option {
    display: block;
    margin-bottom: 6px;
}

.card-element-box {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 12px;
    background: #fff;
}

/* Service listing (service_by_cat.php) */
.promoted-pill {
    position: absolute;
    top: 0;
    left: 0;
    margin: 12px;
    background-color: #00339b;
    color: #fff;
    border-radius: 50rem;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

.review-box {
    border-bottom: 1px solid #eee;
    padding: 14px 0;
}

.review-box .star i {
    color: gold;
    font-size: 14px;
}

/* Footer quick-enquiry (legacy inline styles moved external) */
.footer-message {
    height: 100px;
}

.footer-submit {
    background-color: #235ede;
    color: #fff;
}

/* Shared alerts on ported pages */
.alert {
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.alert-success {
    background: #e7f6ec;
    border: 1px solid #9ed9b5;
    color: #14683a;
}

.alert-danger {
    background: #fdecec;
    border: 1px solid #f2b3b3;
    color: #8f1d1d;
}

.alert ul {
    margin: 0;
    padding-left: 18px;
}

/* Search-bar suggestion dropdowns (search-suggest.js) */
.search-suggest-box {
    position: absolute;
    z-index: 1050;
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    max-height: 260px;
    overflow-y: auto;
    min-width: 220px;
    display: none;
}
.search-suggest-box .suggestion-item {
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
    color: #222222;
}
.search-suggest-box .suggestion-item:hover {
    background: #f0f6f5;
}
#header-zip-suggestions.search-suggest-box,
#header-zip-suggestions .suggestion-item {
    text-align: left;
}

/* Provider service gallery manager */
.provider-gallery-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 0;
}
.provider-gallery-list li {
    width: 140px;
    text-align: center;
}
.provider-gallery-list img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #d9d9d9;
}

/* Home banner carousel — indicators stay hidden (was an inline style on each indicator) */
.main_slider .carousel-indicators [data-bs-target] {
    display: none;
}
