input#profilepic_c {
    display: none;
}

input#profilepic_sp {
    display: none;
}

.photos-slider-box {
    position: relative;
    display: inline-block;
    border-radius: 15px; /* Rounded corners */
    overflow: hidden;
}

.photos-slider-box img {
    width: 100%;
    height: auto;
    border-radius: 15px; /* Rounded corners */
}

.photos-slider {
    height: fit-content;
}

.delete-photo {
    position: absolute;
    top: 10px;
    right: 20px;
    background: transparent;
    color: white;
    border: none;
    padding: 5px 6px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    height: 28px;
    width: 28px;
    text-align: center;
}

.delete-photo span {
    line-height: 20px;
    font-size: 26px;
    opacity: 0.5;
    transition: all 0.3s;
}

.delete-photo span:hover {
    opacity: 0.9;
}

.unverified-icon {
    color: red !important; /* Red color for unverified */
    font-size: 25px; /* Adjust size */
    vertical-align: middle;
    cursor: pointer;
}

.unverified-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: black;
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
}

.material-symbols-outlined {
    cursor: pointer;
}

.material-symbols-outlined::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: black;
    color: white;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
}

.udesc {
    width: 100%;
}

.settings-all form .form-group {
    position: relative;
    margin: 29px 0 9px 0;
}

/* View All Box */
.view-all-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--color-6);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    min-width: 180px;
    flex-direction: column;
}

/* View All Button */
.view-all-btn {
    text-decoration: none;
    color: #007bff;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    background: #e9e9e9;
    transition: background 0.3s ease-in-out;
}

.view-all-btn:hover {
    background: #dcdcdc;
}

.provider-exp {
    cursor: pointer;
}

.provider-exp .tooltip-text {
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    position: absolute;
    bottom: 125%; /* Position above */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.provider-exp:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.select2-container {
    z-index: 1050 !important; /* Ensures Select2 is within modal's stacking context */
}

.select2-container--open {
    z-index: 9999 !important; /* Higher than Bootstrap modal */
}

.pac-container {
    z-index: 9999;
}

.suggestions-box {
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    display: none;
}

.pro-img button {
    position: absolute;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    top: -10px;
    right: -10px;
}

.pro-img button span {
    color: #91278f;
    font-size: 16px;
}

.pro-img img#pro_img_update {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.pro-img.updateIcon {
    width: 150px;
    position: relative;
    margin: 0 auto;
}

.jobbooking-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.jobbooking-list .list-head {
    align-items: center;
}

.jobbooking-list {
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.jobbooking-list:hover {
    transform: scale(1.02);
}

.providers-list, .notifications-list {
    transition: transform 0.2s ease-in-out;
    position: relative;
    z-index: 9;
}

.providers-list:hover, .notifications-list:hover {
    transform: scale(1.02);
}

.no-bookings {
    text-align: center;
    padding: 40px 20px;
}

.no-bookings-text {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
}

.slider-arrow {
    cursor: pointer;
}

#terms-privacy-desc h1,
#terms-privacy-desc h2,
#terms-privacy-desc h3,
#terms-privacy-desc strong {
    color: #000;
}

.upload-button {
    cursor: pointer;
}

#bookServiceForm .form-label,
.form-label {
    color: #868186;
    font-style: italic;
}

.pill-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill {
    position: relative;
    display: inline-block;
    /*border: 2px solid #007bff;*/
    border-radius: 999px;
    padding: 8px 18px;
    color: #91278f;
    /*background-color: #fff;*/
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.pill input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pill input[type="checkbox"]:checked + span {
    background-color: #91278f;
    color: #fff;
    border-color: #91278f;
}

.pill span {
    display: inline-block;
    border-radius: 999px;
    padding: 5px 12px;
}

.bookprov.booktime.select-providers {
    flex-direction: column;
    margin-bottom: 0;
    gap: 10px;
}

.select-providers label.pill {
    padding: 0;
}

.select-providers label.pill p {
    display: none;
}

.select-providers label.pill span {
    padding: 8px 1.5vw;
    border-radius: 4px;
    border: 2px solid #91278f;
    background: #91278f;
    color: #fff;
}

.select-providers label.pill.checked p {
    display: flex;
    gap: 4px;
    width: 100%;
    background: #1c75bc;
    position: relative;
    color: #fff;
    border-radius: 4px;
    border: 2px solid #1c75bc;
    padding: 8px 1vw;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.select-providers label.pill.checked p:after {
    position: absolute;
    content: 'Unselect';
    bottom: -36px;
    color: #91278f;
    font-size: 16px;
    text-align: center;
    display: block;
    width: 100%;
    left: 0vw;
    margin-bottom: 1px;
    font-weight: 500;
}

.pill input[type="checkbox"]:checked + span {
    display: none;
}

.dheading .name-pro {
    margin: 0 !important;
}

.dheading .name-pro h1 {
    font-weight: 600;
    margin: 0;
    padding-left: 0;
    font-size: 28px;
}

.public-profile {
    cursor: pointer;
}

.dheading .name-pro h1.profile-name {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 39.6px;
}

@media (min-width: 1200px) {
    .modal-extra-large {
        max-width: 1200px;
    }
}

span.successmodelicon {
    background: #198754;
    color: #fff;
    font-size: 80px;
    padding: 20px;
    border-radius: 50%;
}

.ppayment {
    flex-wrap: wrap;
    gap: 20px 0;
}

.jobds p {
    white-space: normal;
    text-align: justify;
}

.fw-600 {
    font-weight: 600;
}

.no-providers-box {
    text-align: center;
    /*padding: 40px 20px;*/
    /*max-width: 500px;*/
    margin: 0 auto;
}

.no-icon {
    width: 82px;
    height: auto;
    margin-bottom: 20px;
}

.no-providers-box p {
    color: #555;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.no-providers-box p strong {
    font-weight: bold;
}

.all-providers-btn {
    display: inline-block;
    /*background-color: #9333ea;*/
    /*color: white;*/
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.tmunmstr div {
    display: flex;
    margin: 5px;
    gap: 0px;
}

.italic-font {
    font-style: italic;
}

@media (min-width: 576px) {
    div#publicProfileSpModal .modal-dialog {
        max-width: 90%;
    }
}

@media (min-width: 1200px) {
    div#publicProfileSpModal .modal-extra-large {
        max-width: 1200px;
    }
}

.dheading .name-pro h1.profile-name {
    text-align: left;
    font-size: 40px;
    color: #251C25;
    font-weight: 500;
    line-height: 40px;
}

#providerTermsModal p {
    text-align: justify;
    font-size: unset;
}

#customerTermsModal p {
    text-align: justify;
    font-size: unset;
}

.hidden-important {
    display: none !important;
}

.load-more-btn {
    background: transparent;
    color: #91278F; /* purple text */
    border: none;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.load-more-btn:hover {
    color: #91278F; /* darker purple on hover */
}

.text-purple {
    color: #91278F !important;
}

/* Heading color like screenshot */
.accordion-body p {
    margin-bottom: 0.8rem;
}

.accordion-body ul, .accordion-body ol {
    margin-left: 1.2rem;
    margin-top: 0.5rem;
}

.accordion-button {
    font-size: 1.1rem;
}

.abn_faq {
    color: #92268e;
    font-weight: 800;
    text-decoration: underline;
    cursor: pointer;
}

.theme-color {
    color: #92268e;
}

.navbar-light .navbar-nav li.nav-item.dropdown a#loginDropdown, .navbar-light .navbar-nav li.nav-item.dropdown a#signupDropdown {
    display: flex;
    align-items: center;
}

.navbar-light .navbar-nav .dropdown-toggle::after {
    display: none
}

.navbar-light .navbar-nav li.nav-item.dropdown a#loginDropdown span,
.navbar-light .navbar-nav li.nav-item.dropdown a#signupDropdown span {
    transition: all 0.3s;
}

.navbar-light .navbar-nav li.nav-item.dropdown a#loginDropdown.show span,
.navbar-light .navbar-nav li.nav-item.dropdown a#signupDropdown.show span {
    transform: rotate(180deg);
    transition: all 0.3s;
}

.footer-link li.dropdown a#loginDropdown, .footer-link li.dropdown a#signupDropdown {
    display: flex;
    align-items: center;
}

.footer-link .dropdown .dropdown-toggle::after {
    display: none
}

.footer-link li.dropdown a#loginDropdown span,
.footer-link li.dropdown a#signupDropdown span {
    transition: all 0.3s;
}

.footer-link li.dropdown a#loginDropdown.show span,
.footer-link li.dropdown a#signupDropdown.show span {
    transform: rotate(180deg);
    transition: all 0.3s;
}

.footer-link .dropdown-menu .dropdown-item {
    color: black !important;
}

.footer-link .dropdown-menu .dropdown-item:hover,
.footer-link .dropdown-menu .dropdown-item:focus,
.footer-link .dropdown-menu .dropdown-item:active {
    color: black !important;
    background-color: transparent !important; /* removes Bootstrap blue bg */
}


.btn-outline-primary.login-nav.show {
    background-color: transparent !important
}

.about-desc {
    word-break: break-word;
}

.udesc button {
    right: -45px;
}

blockquote {
    border-left: 4px solid #ccc;
    margin: 1em 0;
    padding: 0.5em 1em;
    color: #555;
    font-style: italic;
    background: #f9f9f9;
    border-radius: 5px;
    cursor: auto;
}

.offer-btn-up,
.offer-btn-down {
    border: none;
    background: transparent;
    cursor: pointer;
}

.suggest-btn-up,
.suggest-btn-down {
    border: none;
    background: transparent;
    cursor: pointer;
}

.form-check-input {
    clear: left;
}

.form-switch.form-switch-md .form-check-input {
    height: 1.5rem;
    width: calc(2rem + 0.75rem);
    border-radius: 3rem;
}

section#suggestTime form .form-control::-webkit-input-placeholder,
.footer-info form input.form-control::-webkit-input-placeholder {
    font-style: italic;
}

section#suggestTime form .form-control:-moz-placeholder,
.footer-info form input.form-control:-moz-placeholder {
    font-style: italic;
}

section#suggestTime form .form-control::-moz-placeholder,
.footer-info form input.form-control::-moz-placeholder {
    font-style: italic;
}

section#suggestTime form .form-control:-ms-input-placeholder,
.footer-info form input.form-control:-ms-input-placeholder {
    font-style: italic;
}

section#suggestTime {
    padding: 2px 0
}

section#suggestTime form input.form-control {
    font-size: 18px;
    line-height: 27px;
    font-weight: 400
}

section#suggestTime form input.form-control {
    border: 1px solid #868186;
    margin-bottom: 20px;
    border-radius: 4px;
    height: 56px;
    color: var(--color-2)
}

section#suggestTime form textarea.form-control {
    border: 1px solid #868186;
    margin-bottom: 20px;
    resize: none;
    color: var(--color-2)
}

/* Text */
.pause-text {
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

/* Switch wrapper */
.custom-switch {
    position: relative;
    width: 46px;
    height: 24px;
    display: inline-block;
    cursor: pointer;
}

/* Hide default checkbox */
.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    inset: 0;
    background-color: #adb5bd;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.slider::before {
    content: "" !important;
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.custom-switch input:checked + .slider {
    background-color: #28a745;
}

/* Move circle */
.custom-switch input:checked + .slider::before {
    transform: translateX(22px);
}

/* Keyboard accessibility */
.custom-switch input:focus + .slider {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

/* Availability button */
#availabilityBtn,
.availability-btn {
    background-color: #0d6efd;
    color: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 600;
    border: none;
}

#availabilityBtn:hover {
    background-color: #0b5ed7;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .pause-text {
        font-size: 14px;
    }

    .custom-switch {
        transform: scale(0.95);
    }
}

.pause-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .pause-wrapper {
        justify-content: center;
    }

    #availabilityBtn {
        width: 100%;
    }

    .dheading .name-pro h1.profile-name {
        font-size: 24px;
        line-height: 30px;
    }
}

.ck.ck-editor__editable_inline > :last-child {
    text-align: left !important;
}

.gst-section {
    padding: 12px 0;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 8px;
}

/* Mobile layout */
@media (max-width: 576px) {
    .toggle-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .switch {
        align-self: center;
        margin-top: 6px;
    }
}

/* Label */
.toggle-label {
    font-size: 14px;
    color: #495057;
    text-align: left;
}

/* Switch */
.switch {
    position: relative;
    width: 46px;
    height: 24px;
    flex-shrink: 0;
}

/* Hide checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* Track */
.gst-slider {
    position: absolute;
    inset: 0;
    background-color: #ced4da;
    border-radius: 50px;
    transition: 0.25s ease;
    cursor: pointer;
}

/* Thumb */
.gst-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.25s ease;
}

/* ON */
.switch input:checked + .gst-slider {
    background-color: #28a745;
}

/* Move thumb */
.switch input:checked + .gst-slider::before {
    transform: translateX(22px);
}

.profile-circle-wrapper {
    width: 500px;
    height: 480px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    animation: zoomCircle .25s ease;
}

.profile-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes zoomCircle {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .profile-circle-wrapper {
        width: 240px;
        height: 240px;
    }
}
div#profileBookDateTimeModal .datespick {
    width: 60%;
    margin: 0 auto;
}
div#profileBookDateTimeModal .form-label {
    left: 10px;
    top: 6px;
}
div#profileBookDateTimeModal input:focus + label, div#profileBookDateTimeModal input:not(:placeholder-shown) + label {
    opacity: 1;
    transform: scale(1) translateY(-76%) translateX(0px);
    background: #fff;
    padding: 0px 6px;
}
.btn-outline-secondary,
.btn-secondary {
    border-color: #6c757d !important;
    border-radius: 8px;
    font-weight: 700 !important;
    padding: 13.5px 23.2px !important
}
.datepicker-icon {
    cursor: pointer;
    pointer-events: auto;
}
.datepicker-icon {
    position: relative;
    z-index: 10;
}
.pb-btn-up,
.pb-btn-down {
    border: none;
    background: transparent;
    cursor: pointer;
}
/* ── Force stars onto a single line, never wrap ─────────────────────── */
#starrate {
    display         : flex;
    justify-content : center;
    align-items     : center;
    width           : 100%;
    overflow        : visible;
    margin-bottom   : 1.5rem;
}

#starrate .rate {
    display         : inline-flex;   /* all star labels sit in one flex row  */
    flex-direction  : row-reverse;   /* CSS star trick requires reverse order */
    flex-wrap       : nowrap;        /* NEVER wrap to a second line           */
    white-space     : nowrap;
    border          : none;
    padding         : 0;
    margin          : 0;
}

#starrate .rate input {
    display : none;
}

#starrate .rate label {
    cursor      : pointer;
    font-size   : 2rem;
    color       : #ccc;
    flex-shrink : 0;   /* prevent individual stars from shrinking on mobile */
}
