:root {
    --bs-primary: #212d3d; /* Teal */
    --bs-primary-rgb: 32, 201, 151;
    --bs-info: #23cf3c; /* Cyan */
    --bs-info-rgb: 13, 202, 240;
}
body {
    background-color: #f8f9fa;
    color: #212529;
}
/* form css */
/* =========================================
   Global Primary Color Override
   ========================================= */
:root {
    --bs-primary: #212d3d;
    --bs-primary-rgb: 28, 164, 51;
}

/* =========================================
     Form Control (input, textarea, select)
     ========================================= */
.form-control,
.form-select {
    border-color: #dee2e6;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.form-control:focus,
.form-select:focus {
    border-color: #212d3d !important;
    outline: none !important;
    box-shadow: none;
}
a {
    color: #212d3d;
    text-decoration: none;
}
a:focus-visible {
    outline: none;
    box-shadow: none;
}
label {
    font-weight: 600;
}
/* Placeholder color optional:
  .form-control::placeholder {
    color: #7dbf8a;
  }
  */

/* =========================================
     Checkboxes
     ========================================= */
.form-check-input:checked {
    background-color: #212d3d !important;
    border-color: #212d3d !important;
}

.form-check-input:focus {
    border-color: #212d3d !important;
    box-shadow: 0 0 0 0.25rem rgba(33, 45, 61, 0.25) !important;
}

/* =========================================
     Radio Buttons
     ========================================= */
.form-check-input[type="radio"]:checked {
    background-color: #212d3d !important;
    border-color: #212d3d !important;
}

/* =========================================
     Switches
     ========================================= */
.form-switch .form-check-input:checked {
    background-color: #212d3d !important;
    border-color: #212d3d !important;
}

/* =========================================
     Input Group (focus border fix)
     ========================================= */
.input-group-text {
    border-color: #dee2e6 !important;
}

/* On focus, input group border becomes green */
.input-group .form-control:focus {
    border-color: #212d3d !important;
    box-shadow: 0 0 0 0.25rem rgba(200, 217, 240, 0.25) !important;
}

/* =========================================
     Dropdowns
     ========================================= */
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:hover {
    background-color: #212d3d !important;
    color: #fff !important;
}

/* form css end */
.navbar {
    background-color: var(--bs-primary);
}
/* .navbar-brand,
.nav-link {
    color: white !important;
} */
.navbar-nav .nav-item .nav-link {
    color: #fff;
}
.navbar-nav .nav-item .nav-link:hover {
    color: #dee2e6;
}
.hero {
    background: #2a3646;
    color: white;
    padding: 60px 0;
}
.hero h1 {
    font-weight: bold;
    font-size: 2.5rem;
}
.hero .lead {
    font-size: 1.1rem;
}
.section-bg {
    background-color: white;
    padding: 80px 0;
}
.product-card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
}
.product-card .card-img-top {
    height: 300px;
    object-fit: cover;
}

.image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
    background: #f5f5f5;
}
.card-text {
    min-height: 50px;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* makes the image fill the box perfectly */
    object-position: center;
}
.feature-icon {
    background: var(--bs-primary);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.testimonial-carousel .carousel-item {
    text-align: center;
    padding: 2rem;
}
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
footer {
    background-color: var(--bs-primary);
    color: white;
    padding: 40px 0;
    margin-top: 80px;
}
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.blockquote {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
}
.blockquote p {
    color: #212529; /* Standard text color */
    font-style: italic;
}
.blockquote-footer {
    color: #6c757d; /* Muted text color */
    background: none;
}

.hero-small {
    background: #2a3646;
    padding: 80px 0;
    color: #fff;
}

.plan-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-width: 850px;
    margin: 40px auto;
}

.plan-header {
    background: #212d3d;
    color: white;
    padding: 25px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.plan-price {
    background: #2a3646;
    color: #f2f2f2;
    padding: 15px;
    text-align: center;
    font-size: 1.9rem;
    font-weight: 700;
}

.content-section {
    padding: 35px;
}

.keypoint {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 1rem;
}

.keypoint-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #212d3d;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-weight: 700;
    flex-shrink: 0;
}

.divider-line {
    width: 1px;
    background: #053680;
    height: 100%;
    margin: 0 30px;
}

.checkout-btn {
    background: #212d3d;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
}

.checkout-btn:hover {
    opacity: 0.9;
}

/** questionnaire css **/

.question-container {
    display: none;
    max-width: 700px;
    margin: 50px auto;
}

.question-container.active {
    display: block;
}

.full-center-wrapper {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .progress-container {
        max-width: 720px;
        padding: 0 1.2rem;
        margin: 20px auto;
        width: 100%;
    }
}
.progress-text {
    text-align: right;
    font-weight: 500;
    margin-top: 5px;
}

.sub-question {
    margin-top: 18px;
    text-align: left;
    animation: fadeIn 0.22s ease-in-out;
    border-top: 1px solid #e9ecef;
    padding-top: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-msg {
    color: red;
    font-size: 0.9rem;
    margin-top: 8px;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
/* ui changes new */
::selection {
    background-color: #212d3d;
    color: #ffffff;
}

/* For Firefox */
::-moz-selection {
    background-color: #212d3d;
    color: #ffffff;
}

.accordion-button,
.accordion-button:focus {
    outline: none;
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    background-color: #c8d9f0;
}
.accordion-header .accordion-button {
    font-weight: 600;
}
.small-container {
    max-width: 900px;
    margin: 0px auto;
    padding: 0 1.5rem;
}
.btn {
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-padding-y: 0.6rem;
}
.btn:focus-visible {
    color: #fff;
    background-color: #212d3d;
    border-color: #212d3d;
    outline: 0;
    box-shadow: none;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
     background-color: #212d3d;
    border-color: #212d3d;
}
.form-check-input {
    width: 1.2em;
    height: 1.2em;
}
.form-check .form-check-input {
    margin-left: -2em;
}
.form-check {
    padding-left: 2rem;
}
select option:hover {
    background: #212d3d;
}

.alert-info {
    --bs-alert-bg: #c8d9f0;
    --bs-alert-border-color: #212d3d;
}
input:-internal-autofill-selected,
input:-webkit-autofill {
    background-color: #c8d9f0 !important;
}
.checkout-card .text-danger {
    display: block;
    padding-top: 8px;
}
.checkout-card .form-select {
    padding: 0.75rem;
}
.remove-btn {
    position: absolute;
    top: 10px;
    right: -10px;
    background: rgb(215, 40, 40);
    color: white;
    padding: 3px 9px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    width: 32px;
    height: 32px;
    display: none;
}
@media (max-width: 992px) {
    .file-upload-container {
        padding: 40px 20px !important;
        max-width: 90% !important;
    }
    .btns-mob {
        flex-direction: column;
    }
}
@media (max-width: 767px) {
    .small-container {
        max-width: 100%;
    }
    .progress-container {
        margin: 0 auto;
        width: 90%;
    }
}
/* video upload */
.top-bar {
    background: #212d3d;
    padding: 15px 0;
    text-align: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
}
.select2.select2-container.select2-container--default {
    width: 100% !important;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #212d3d !important;
    border-radius: 4px;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: #444;
    line-height: 50px !important;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow,
.select2-container--default
    .select2-selection--single
    .select2-selection__clear,
.select2-container .select2-selection--single {
    height: 50px !important;
}

.card-custom.card {
    max-width: 700px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.video-box {
    width: 300px;
    height: 200px;
    background: #e3e3e3;
    margin: auto;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
ul {
    list-style: none;
    padding: 0;
}

.btn-record {
    background: #d62828;
    color: white;
    margin-bottom: 20px;
}

.btn-submit {
    background: #73a8cc;
    color: white;
    width: 100%;
    padding: 15px;
}

/* Modal */
.custom-model.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.custom-model .modal-box {
    width: 600px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    position: relative;
}

.btn-camera {
    background: #1c62b9;
    color: white;
}

.btn-upload {
    background: #20a3a7;
    color: white;
}

.btn-cancel {
    background: #d9534f;
    color: white;
}

.close-x {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
}

@media (max-width: 767px) {
    .custom-model .modal-box {
        width: 90%;
    }
}

.row-ft {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 150px;
}

/* SIDEBAR */
.dashboard-sidebar {
    background: #fff;
    min-height: 100vh;
    border-right: 1px solid #e5e7eb;
    padding: 16px 0;
    transition: all 0.3s ease;
    z-index: 2000;
}

/* MOBILE SIDEBAR HIDE */
@media (max-width: 992px) {
    .dashboard-sidebar {
        position: fixed;
        left: -260px;
        top: 56px;
        bottom: 0;
        width: 240px;
        border-right: 1px solid #e5e7eb;
        border-bottom: none;
        background: #fff;
        min-height: auto;
    }
    .dashboard-sidebar.show {
        left: 0;
    }
}

.dashboard-sidebar h5 {
    padding-left: 22px;
    margin-bottom: 14px;
    font-weight: 600;
}

/* NAV ITEMS */
.dashboard-nav {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    padding: 10px 22px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    margin: 4px 12px;
    text-decoration: none !important; /* remove underline */
}
.dashboard-nav i {
    margin-right: 10px;
    font-size: 18px;
    color: #4b5563;
}
.dashboard-nav.active,
.dashboard-nav:hover {
    background: #e5e7eb;
    color: black;
    text-decoration: none !important; /* remove underline on hover */
}

/* CARD */
.card {
    border-radius: 18px;
    border: 1px solid #e5e7eb;
}

/* BADGE */
.badge-green {
    background: #22c55e;
    color: #fff;
    padding: 4px 10px;
    font-size: 14px;
    border-radius: 6px;
    font-weight: 500;
}

.pill {
    background: #e5f9e6;
    color: #059669;
    padding: 2px 8px;
    font-size: 12px;
    border-radius: 6px;
    font-weight: 600;
}

/* BUTTONS */
.btn-refill {
    background: #10b981;
    border: none;
    width: 100%;
    font-size: 16px;
    padding: 10px 0;
    border-radius: 12px;
    font-weight: 500;
}
.btn-refill:hover {
    background: #0ea37b;
}

.btn-view {
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    width: 100%;
    padding: 10px 0;
}

/* IMAGE */
.med-img {
    width: 80px;
    height: auto;
}
@media (max-width: 768px) {
    .med-img {
        width: 60px;
    }
}

/* SHIPPING BOX */
.shipping-box {
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px;
}

/* OVERLAY FOR MOBILE */
#overlay {
    position: fixed;
    top: 56px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

/* NEW NAVBAR CLASS */
.topnav {
    border-bottom: 1px solid var(--border);
    min-height: 70px;
    background: #fff;
}

.topnav-brand {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -1px;
    color: rgb(22, 20, 20) !important;
}

.topnav-link {
    font-weight: 500;
    font-size: 14px;
    padding: 24px 16px !important;
    color: var(--text-gray) !important;
}

.topnav-link.active {
    color: var(--brand-primary) !important;
    border-bottom: 2px solid var(--brand-primary) !important;
}

@media (max-width: 992px) {
    .topnav-link {
        padding: 14px 10px !important;
        display: block;
    }
}

/* HEADER BAR */
.top-header {
    border-bottom: 1px solid #dee2e6;
    padding: 12px 0;
    background: #212d3d;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #fff;
}

.header-icon {
    font-size: 1.6rem;
    cursor: pointer;
    color: #fff;
}

/* NAV/GREETING BAR */
.nav-wrapper {
    border-bottom: 1px solid #dee2e6;
    padding: 20px 0;
}

.greeting {
    font-size: 1.05rem;
    font-weight: 700;
    color: #212d3d;
    margin-bottom: 2px;
}

.greeting-sub {
    font-size: 16px;
    color: #444;
    padding-bottom: 10px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 0;
    text-decoration: none;
    color: #444;
    display: inline-block;
    margin-right: 20px;
}
.nav-links a:last-child {
    margin-right: 0;
}
.nav-links a.active {
    border-bottom: 2px solid #212d3d;
    color: #212d3d;
}

/* LEFT PRODUCT CARD */
.product-box {
    border: 1px solid #d0dcd2;
    border-radius: 6px;
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.06);
}

.subs-product-img {
    width: 110px;
    height: 110px;
    border: 1px dashed #c2c2c2;
    border-radius: 6px;
    background: #f1f1f1;
    margin-right: 12px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0;
}

.product-sub {
    font-size: 1rem;
    color: #818992;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
}

.product-next {
    font-size: 1rem;
    font-weight: 400;
    color: #444;
}

.product-next span {
    color: #1b5e20;
    /* text-decoration: underline; */
    font-weight: 700;
}
.badge {
    line-height: normal;
}

#data-table-order th:nth-child(7),
#data-table-order td:nth-child(7) {
    min-width: 90px;
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    padding: 8px 8px;
    line-height: 1.0;
}

.status-badge {
    background: #212d3d;
    padding: 3px 15px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.0;
    font-size: 12px;
}
.status-btn {
    position: absolute;
    top: 0;
    right: 15px;
    z-index: 1;
}

/* RIGHT PANEL */
.details-card {
    border: 1px solid #d0dcd2;
    border-radius: 6px;
    background: white;
    padding: 18px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.08);
}
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #efefef;
}
.details-body {
    /* height: 150px;
    overflow-y: auto; */
}
.details-title {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
}

.details-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid #efefef;
    color: #444;
}

.details-row:last-child {
    border-bottom: none;
}

.badge-pill {
    font-size: 0.75rem;
    border-radius: 12px;
    padding: 4px 9px;
    font-weight: 600;
}

hr {
    margin-top: 12px;
    margin-bottom: 12px;
}

.product-box.active-card {
    border-left: 4px solid #212d3d;
    box-shadow: 0 0 6px rgba(13, 110, 253, 0.4);
}

/* FOOTER TEXT */
.panel-note {
    padding: 12px 24px;
    font-size: 13px;
    text-align: center;
    color: var(--text-gray);
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
    .navbar-nav {
        text-align: right;
    }
    .nav-link {
        padding: 14px 10px !important;
        display: block;
    }
    .product-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

.table thead tr th {
    font-weight: 700;
    font-size: 1rem;
    color: #444;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    /* padding: 15px 30px; */
    text-transform: uppercase;
}
/* .table tbody tr td {
    padding: 15px 30px;
} */
.table tbody td {
    font-size: 1rem;
    color: #444;
    vertical-align: middle;
    background: #fff;
}

.status-approved {
    color: #16a34a;
    font-weight: 500;
}

/* cursor hand on pagination */
.pagination .page-link {
    cursor: pointer;
    font-size: 14px;
}

/* hover style */
.pagination .page-link:hover {
    background: #f1f5f9;
}
.selectdate-box {
    min-height: 38px;
}
/* order history table  */
.active > .page-link,
.page-link.active {
    background-color: #212d3d;
    border-color: #212d3d;
    color: #fff;
}
.pagination .page-link:hover {
    background-color: #5c79ff;
    color: #fff;
}
.page-link {
    color: #212d3d;
}
.pagination-cont nav .d-none.flex-sm-fill .small.text-muted {
    padding-right: 15px;
}

/* order details page */
.order-summary,
.order-details {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}
.order-summary table {
    margin-bottom: 0px;
}
.order-summary th,
.order-summary td {
    border: none;
    vertical-align: middle;
    font-size: 14px;
}
.order-summary tbody td {
    padding: 12px 8px;
}
.order-summary thead th {
    font-weight: 600;
    font-size: 14px;
}
.order-summary .totals p {
    margin: 3px 0;
    font-size: 14px;
}
.order-summary .totals h5 {
    font-weight: 700;
    margin-top: 10px;
    font-size: 16px;
}
.order-details .detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
.order-details .detail-item:last-child {
    border-bottom: none;
}
.order-details .detail-item .icon {
    font-size: 18px;
    color: #555;
    margin-left: 10px;
}
.text-primary {
    color: #212d3d !important;
}
.return-link {
    font-size: 16px;
    color: #fff;
    display: inline-block;
    margin-bottom: 10px;
    background: #444;
    border-radius: 20px;
    padding: 6px 20px;
    text-decoration: none;
}
.order-summary .table thead tr th,
.order-summary .table tbody tr td {
    padding: 15px 0;
}
.order-summary .table tbody tr:not(:last-child) {
    border-bottom: 1px solid #dee2e6;
}
.product-img-con {
    display: flex;
    align-items: center;
}
.p-image {
    width: 100px;
    margin-right: 15px;
}
.order-summery-btns {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
 .order-summery-btns li a {
    padding: 8px 20px;
    border-radius: 30px;
}
/*.order-summery-btns li a:hover {
    background: #444;
    color: #fff;
    border: 1px solid #444;
} */
.sub-title {
    font-size: 1rem;
    color: #818992;
}
.cus-address-title {
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 20px;
}
.billing-address p {
    margin-bottom: 0;
}
.details-row i {
    margin-left: 5px;
}
/* my account page */
.nav-tabs .nav-link {
    color: #444;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 30px;
}
.nav-tabs .nav-link:hover {
    border: none;
}
.nav-tabs .nav-link.active {
    border: none;
}
.nav-tabs {
    gap: 5px;
    border: none;
}
.tab-content {
    background: #fff;
}
.head-t {
    font-weight: 700;
    font-size: 1rem;
    color: #444;
    text-transform: uppercase;
}
.bg-light-green {
    background: #dee8f5;
}

.table > tbody > tr > td,
.table > tbody > tr > th {
    padding: 6px 12px !important;
}

.table > tfoot > tr > td,
.table > tfoot > tr > th {
    padding: 6px 12px !important;
}

.table thead th,
.table td,
.table th {
    font-size: 0.8rem !important;
    /* padding: 6px 24px !important; */
}

.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span,
.pagination > li > a,
.pagination > li > span {
    border-radius: 4px !important;
    padding: 4px 10px;
    font-size: 12px;
    border: 1px solid #dddddd !important;
    margin-inline: 2px !important;
}

.dataTables_filter {
    text-align: right !important;
}

.footer-con {
    background-color: #212d3d;
    color: white;
    padding: 40px 0;
    margin-top: 80px;
}
.legitlogo {
    width: 160px;
}
.my-profile {
    padding: 30px 0 30px 30px;
}
.my-profile h5,
.bg-light-green h5 {
    margin-bottom: 40px;
}
.inner-tab-content {
    padding: 30px;
}
.logo-cont{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.logo-cont .hipaalogo {
    width: 110px;
}
.logo-cont .hipaalogo:not(:first-child) {
    margin-left: 30px;
}
.btn-primary,
.btn-success {
    background-color: #212d3d !important;
    color: #ffffff;
    padding: 12px 38px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    transition: 0.3s ease;
}
.btn-primary:hover,
.btn-success:hover {
    background: #263953 !important;
}

.btn-primary-outline {
    background-color: transparent;
    color: #444;
    padding: 12px 38px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #444;
    transition: 0.3s ease;
}
.btn-primary-outline:hover {
    background-color: #444;
    color: #fff;
    border: 1px solid #444;
}
.bi-pencil-square {
    color: #212d3d;
}
.text-success {
    color: #212d3d;
}

.status-badge {
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.partial {
    background: #6c757d;
    color: #ffffff;
}
.status-pending {
    background: #fff4e6;
    color: #f59f00;
}
.status-badge.cancelled {
    background: #e03131;
    color: #ffe3e3;
}
.status-badge.declined {
    background: #e03131;
    color: #ffe3e3;
}
.status-badge.hold {
    background: #007bff;
    color: #ffffff;
}
.status-badge.completed {
    background: #0c7a2f;
    color: #ffffff;
}
/* doctor message */
.chat-header {
    background: #212d3d;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
}
.chat-bubble {
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}
.bg-green {
    background: #f0fddf;
}
.chat-footer {
    border-top: 1px solid #eee;
    padding: 15px;
}
.upload-box {
    border: 1px solid #dce1dd;
    background: #f7f9f8;
    border-radius: 8px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.btn-icon {
    text-decoration: none;
    color: #444;
}
.btn-icon .fa-eye {
    color: #444;
}
.myend-msg {
    background: #f0fddf;
}
.received-msg {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.send-msg {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
}
.attachment-con {
    position: relative;
}
.attachment-con .attachment-icon {
    position: absolute;
    top: 8px;
    left: 10px;
    z-index: 2;
    padding: 5px;
    background: #fff;
}
.attachment-con input {
    padding-left: 50px;
}
.attachment-options {
    display: none;
    position: absolute;
    bottom: 34px;
    left: 0;
    background: #fff;
    border: 1px solid #dce1dd;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 3;
    width: 140px;
}
.attachment-options li {
    padding: 5px 15px;
    cursor: pointer;
}
.attachment-options li a {
    text-decoration: none;
    color: #444;
}
.attachment-options li a:hover {
    color: #212d3d;
}
.address-text {
    margin-top: 40px;
}
.address-text li {
    margin-bottom: 20px;
}
.address-text li:last-child {
    margin-bottom: 0px;
}
.address-text span {
    font-weight: 600;
}

/* register page */

.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0 4rem 0;
    padding: 0 15px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex-grow: 0;
}
/*
.circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
    border: 2px solid #e9ecef;
}

.step.active .circle {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.step.active.completed .circle {
    background-color: #198754;
    border-color: #198754;
}

.line {
    height: 4px;
    background-color: #dee2e6;
    flex: 1;
    margin: 0 10px;
    margin-top: -19px;
    z-index: 0;
    transition: background-color 0.3s;
}

.line.active {
    background-color: var(--primary-color);
} */

.card {
    border-radius: 1rem;
    box-shadow: var(--shadow-light);
    border: none;
}

.card-header-custom {
    background-color: var(--primary-color);
    border-top-left-radius: calc(1rem - 1px);
    border-top-right-radius: calc(1rem - 1px);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.benefit-item:last-child {
    margin-bottom: 0;
}
.benefit-icon-wrapper {
    flex-shrink: 0;
    margin-right: 1rem;
}
.benefit-icon {
    background: #212d3d;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    justify-content: center;
    display: flex;
    align-items: center;
}
.benefit-icon i{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.benefit-icon img {
    max-width: 30px;
    height: auto;
}

.benefit-text h5 {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.benefit-text p {
    font-size: 0.95rem;
    color: #6c757d;
}

@media (max-width: 767px) {
    .stepper {
        margin: 2rem 0;
    }
}
.login-t{font-weight: 600;
color: #5c79ff;}
.text-green{
    color: #212d3d;
}


.profile-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.profile-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 35px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 150px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
}

.profile-dropdown a,
.profile-dropdown button {
    width: 100%;
    padding: 10px 15px;
    display: block;
    text-align: left;
    color: #333;
    font-size: 14px;
    background: none;
    border: none;
    text-decoration: none;
    cursor: pointer;
}

.profile-dropdown a:hover,
.profile-dropdown button:hover {
    background: #f5f5f5;
}

/* SHOW DROPDOWN ON HOVER */
.profile-wrapper:hover .profile-dropdown {
    display: block;
}
.small-icon {
    font-size: 14px;
}


.loader-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1050;
}

.loader-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1060;
    text-align: center;
}
.bg-primary{
    background-color: #212d3d !important;
}
.custom-checkbox {
    position: relative;
}

.custom-checkbox input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.custom-checkbox label span:before {
    content: "";
    -webkit-appearance: none;
    background-color: #212d3d;
    border: 2px solid #212d3d;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.custom-checkbox input:checked + label span:after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.checkbox-box {
    position: absolute;
    left: 0;
    top: 3px;
}
.checkbox-label {
    padding-left: 40px;
    position: relative;
    cursor: pointer;
    display: block;
}
.form-input-label {
    font-size: 0.75rem;
    margin-bottom: 0;
    font-weight: 400;
}
.benefit-text h5 {
    font-weight: 400;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}
