body {
    background: #f2f5f9;
    font-family: Segoe UI;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #000;
}

.breadcrumb-item a i {
    color: #eb1051;
}

/* responsive padding */

.fems-header-pad {
    padding-left: 100px;
    padding-right: 100px;
}

@media(max-width:1200px) {
    .fems-header-pad {
        padding: 0 40px;
    }
}

@media(max-width:768px) {
    .fems-header-pad {
        padding: 0 20px;
    }
}

/* navbar */

.fems-navbar {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

/* nav links */

.fems-nav-list {
    display: flex;
    align-items: center !important;
    gap: 35px;
    position: relative;
}

.fems-nav-link {
    position: relative;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding-bottom: 0;
    cursor: pointer;
    font-size: 19px;
    padding-left: 20px;
}

/* divider */

.fems-nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 22px;
    border-right: 1px solid #000;
}

/* remove divider from first item */


/* hover */

.fems-nav-link:hover {
    color: #f10f51;
}

/* underline */

.fems-nav-link:hover::after {
    width: 100%;
}

.fems-active {
    color: #033973;
}

.fems-active::after {
    width: 100%;
}

/* dropdown desktop hover */

@media(min-width:992px) {
    .fems-dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* mobile nav fix */

@media(max-width:991px) {

    .fems-nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .fems-nav-link {
        padding: 8px 0;
    }

    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        margin: 0;
    }

}

/* status bar */

.fems-status-bar {
    background: linear-gradient(90deg, #f10f51, #033973);
    color: #fff;
    font-size: 15px;
    padding: 10px 0;
}

.fems-status-content {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

@media(max-width:768px) {
    .fems-status-content {
        justify-content: center;
        text-align: center;
    }
}

/* footer */

.fems-footer {
    background: #111;
    color: #ddd;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    margin-top: 40px;
}

/* ---------------- PROFILE PANEL ---------------- */

.profile-wrapper {
    position: relative;
}

.profile-panel {
    position: absolute;
    right: 0;
    top: 45px;
    width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    padding: 15px;
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
    transition: all .35s ease;
    z-index: 999;
}

.profile-panel.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.profile-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.profile-box {
    background: #f6f6f6;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 13px;
}

.profile-item {
    display: block;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: .25s;
}

.profile-item:hover {
    background: #f2f5f9;
}

.logout {
    color: #e63946;
    font-weight: 600;
}

.navbar-brand img {
    width: max-content;
    height: 70px;
    object-fit: contain;
}




/* body-css */

.section-box {
    background: white;
    border: 1px solid #bcd;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 800;
    color: #e74c3c;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-title {
    text-align: center;
    margin: 20px 0;
}

.form-title h4 {
    color: #0d6efd;
    font-weight: 700;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 8px;
}

.fems-status-content ul {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0;
    list-style: none;
    margin: 0;
}

/* LAB DETAILS BOX */

.femslab-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #033973;
    border-right: 5px solid #033973;
    margin-bottom: 20px;
}

/* title */

.femslab-title {
    font-size: 16px;
    font-weight: 700;
    color: #033973;
    letter-spacing: .5px;
}

/* item card */

.femslab-item {
    background: #f7f9fc;
    border-radius: 10px;
    padding: 15px 18px;
    height: 100%;
    transition: .25s;
    border: 1px solid #edf1f7;
}

/* hover effect */

.femslab-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}

/* label */

.femslab-label {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 4px;
}

/* value */

.femslab-value {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

.season_crnt_tm.clock.season_out h6 {
    margin: 0;
}

.time {
    font-weight: 600;
}

.fems-status-content ul li a,
.fems-status-content ul li {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    text-transform: capitalize;
}

.form-title p {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.avatar img {
    width: 50px;
    height: 50px;
    border: 1px solid #762563;
    padding: 2px;
    border-radius: 100%;
}

a.fems-nav-link.text-danger .profile-top {
    display: flex;
    margin-bottom: 12px;
    flex-direction: row-reverse;
    gap: 20px;
    align-items: center !important;
    margin: 0;
}

.profile-top.user_pf {
    margin: 0;
    padding: 0;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; */
    border: 1px solid #e3e6eb;
    padding: 10px 15px;
    border-radius: 10px;
}

.lg_user_info h5 {
    font-size: 16px;
    margin: 0;
}

span.small.text-muted {
    font-size: 13px;
    margin: 0;
}

.lg_user_info {
    display: flex;
    flex-direction: column;
}

.submenu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #222;
    list-style: none;
    padding: 10px 0;
    min-width: 180px;

    /* HIDDEN */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    /* SMOOTH ANIMATION */
    transition: all 0.35s ease;
}

/* SUBMENU ITEMS */
.submenu li {
    padding: 10px 20px;
    white-space: nowrap;
}

.submenu li:hover {
    background: #333;
}

/* HOVER SHOW */
.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ARROW */
.dropdown::after {
    content: " ▼";
    font-size: 10px;
}

ul.submenu.all_sub {
    display: grid;
    gap: 0;
}


/* button.btn.btn-success.btn-sm {
            background-color: #0a3872;
            color: #fff;
            border: 1px solid #fff;
            padding: 8px 15px;
            box-shadow: inset #c5b7bb 0px 1px 15px;
            position: relative;
            z-index: 1;
            cursor: pointer;
            transition: all 0.35s ease;
            float: right;
        } */
button.btn.btn-success.btn-sm {
    background-color: #0a3872;
    color: #fff;
    border: 1px solid #fff;
    padding: 8px 15px;
    box-shadow: inset #c5b7bb 0px 1px 15px;
    position: absolute;
    z-index: 1;
    cursor: pointer;
    transition: all 0.35s ease;
    float: right;
    right: 100px;
}

/* OUTER ANIMATED BORDER */
button.btn.btn-success.btn-sm::after {
    content: "";
    position: absolute;
    inset: -4px;
    /* outside border */
    border: 2px solid yellow;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.35s ease;
    z-index: -1;
}

/* HOVER EFFECT */
button.btn.btn-success.btn-sm:hover {
    transform: translateY(-4px) scale(1.03);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 255, 0, 0.6);
}

/* BORDER SHOW */
button.btn.btn-success.btn-sm:hover::after {
    opacity: 1;
    transform: scale(1);
}

.season_crnt_tm.clock.season_out {
    display: flex;
    gap: 9px;
}

.history .dropdown::after {
    display: none;
}


/* breadcrumb-css */
.genetic_form {
    background-color: #e9ecef;
    padding: 20px 100px;
}


.genetic_form {
    background-color: #e9ecef;
    padding: 10px 0px;
    margin-top: 20px !important;
    margin: 0 100px;
    border-radius: 10px;
}

ol.breadcrumb {
    margin: 0;
    padding: 10px 25px;
}


.prenatal-section {
    font-family: Arial;
}

.main-title {
    font-weight: 600;
    color: #1a2d6d;
    display: block;
    margin-bottom: 10px;
}

.required {
    color: red;
}

.row-item {
    margin-bottom: 8px;
}

.sub-options {
    margin-left: 25px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px 40px;
}

.sub-options label {
    font-size: 14px;
}

input[type="checkbox"] {
    margin-right: 6px;
}

.clin_add {
    padding-top: 20px;
    margin: 0;
    padding-bottom: 0px !important;
}

.section-title {
    color: #1a2d6d;
    display: block;
    padding-bottom: 20px;
    margin: 0;
}

/* .section-box .col-md-2 {
    margin-top: 0;
} */
.form-cards .row {
    row-gap: 15px;
}

.left-info p {
    font-size: 18px;
}

.clin_info {
    padding-bottom: 0;
}

input[type="date"] {
    height: 55px;
}

select.form-control.role_nm {
    background-color: #fff !important;
}

.required {
    color: red;
}

.checkbox-list label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.checkbox-list input {
    margin-right: 6px;
}


/* ===== Parent Scoped CSS ===== */

/* Layout */
.genetic-form .form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.genetic-form .form-group {
    flex: 1;
    min-width: 300px;
}

/* Labels */
.genetic-form label {
    font-weight: 600;
    color: #1a2c6b;
    display: block;
    margin-bottom: 8px;
}

.genetic-form label span {
    color: red;
}

/* Inputs */
.genetic-form input[type="text"],
.genetic-form input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    outline: none;
}

/* Radio */
.genetic-form .radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.genetic-form .radio-group label {
    font-weight: normal;
    color: #000;
}

/* Bottom Section */
.genetic-form .bottom-info {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.genetic-form .left-info {
    font-size: 14px;
}

.genetic-form .right-info {
    text-align: right;
    font-size: 14px;
    max-width: 350px;
}

/* Buttons */
.genetic-form .button-group {
    text-align: center;
    margin-top: 30px;
}

.genetic-form button {
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    margin: 5px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}

.genetic-form .btn-green {
    background: #1f5f2e;
}

.genetic-form .btn-grey {
    background: #6c8ea0;
}

.genetic-form .btn-blue {
    background: #2f3fa0;
}

.genetic-form .btn-red {
    background: #b52a2a;
}

.genetic-form button:hover {
    opacity: 0.9;
}

/* Responsive */
@media(max-width:768px) {
    .genetic-form .form-wrapper {
        padding: 20px;
    }

    .genetic-form .right-info {
        text-align: left;
        margin-top: 15px;
    }
}

.right-info img {
    width: 300px;
    height: auto;
    object-fit: contain;
}

.form-title_name {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}





/* ==========================FORM=============================== */
.pndt-app {
    background: unset;
    height: auto;
    align-content: center;
}

.pndt-app .table-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

/* HEADER */
.pndt-app thead {
    background: linear-gradient(90deg, #f10f51, #033973);
    color: #fff;
}

/* TABLE FIX */
.pndt-app .table {
    border-collapse: separate !important;
    border-spacing: 0;
}

.pndt-app .table th,
.pndt-app .table td {
    border: 1px solid #dee2e6 !important;
}

/* HOVER */
.pndt-app tbody tr:hover {
    background: #eef5ff;
}

/* STATUS */
.pndt-app .status {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.pndt-app .active {
    background: #d4edda;
    color: #155724;
}

.pndt-app .pending {
    background: #fff3cd;
    color: #856404;
}

/* PAGINATION */
.pndt-app .pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.pndt-app .pagination button {
    border: 1px solid #ccc;
    background: #f1f1f1;
    padding: 6px 12px;
    border-radius: 4px;
}

.pndt-app .pagination .active-page {
    background: #ee0f51;
    color: #fff;
}

.pndt-app .pagination .disabled {
    background: #e9ecef;
    color: #aaa;
    cursor: not-allowed;
}

button.btn.btn-sm.btn-primary {
    background-color: #ee0f51;
    border: none;
}


/* login page */

/* HEADER */
.top_header {
    background: #f5f5f5;
    padding: 12px 25px;
}

.top_header .left {
    display: flex;
    align-items: center;
}

.top_header img {
    height: 85px;
    margin-right: 10px;
}

button.btn.btn-outline-light.ms-2 {
    height: -webkit-fill-available;
    width: 85px;
}

.top_header h5 {
    margin: 0;
    font-weight: 700;
    color: #e11d48;
}

.top_header p {
    margin: 0;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

.top_header .right {
    display: flex;
    align-items: center;
}

.top_header .right img {
    height: 85px;
}

/* LOGIN SECTION */
/* .login_sec {
            height: calc(96vh - 130px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            background: linear-gradient(90deg, rgba(241, 15, 81, 0.8), rgba(3, 57, 115, 0.8)),
                url('../images/bg_fig.png');
            background-size: cover;
            background-position: center;
            position: relative;
        } */
.login_sec {
    height: calc(96vh - 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    background: #f60a53 url('../images/rmv_pndt.png');
    /* background: #f60a53 url('../images/Gemini_Generated_Image_223jbv223jbv223j.png'); */
    background-size: cover;
    background-position: left;
    position: relative;
}

.login_sec::before {
    position: absolute;
    content: '';
    background-image: url('../images/flowers.png');
    background-repeat: no-repeat;
    background-size: 200px;

    width: 200px;
    height: 200px;

    top: 0;
    left: 0;

    opacity: 0.8;
    pointer-events: none;

    animation: flowerMove 8s infinite linear;
}

/* KEYFRAME ANIMATION */
@keyframes flowerMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(60px, 0px) rotate(0deg);
    }

    75% {
        transform: translate(30px, 20px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}


@keyframes flowerFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.login_sec::after {
    position: absolute;
    content: '';
    background: url('../images/flowers.png') no-repeat;
    background-size: 180px;
    width: 180px;
    height: 180px;
    bottom: 20px;
    right: 20px;
    opacity: 0.7;
    animation: flowerFloat 4s ease-in-out infinite;
}

.login_main {
    width: 100%;
    max-width: 1320px;
    padding: 25px;
    background: rgb(0 0 0 / 8%);
    backdrop-filter: blur(52px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* LEFT */
.login_main_left {
    color: #fff;
    padding: 30px;
}

.login_main_left img {
    width: 250px;
    margin-bottom: 20px;
}

/* CARD */
.login-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: 0.3s;
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* INPUT */
.form-control {
    background: #f7f9fc;
    color: #000 !important;
    height: 55px;
}

select.form-control {
    background: #f7f9fc;
    color: #000 !important;
    height: 55px;
}

.table thead tr th {
    background-color: #ee0f51;
    color: #fff;
}

.form-control::placeholder {
    color: #000;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #fff;
    color: #fff;
}

/* BUTTON */
.btn-danger {
    background: linear-gradient(90deg, #f10f51, #ff6a00);
    border: none;
    height: 65px;
}

.btn-danger:hover {
    background: linear-gradient(90deg, #ff6a00, #f10f51);
    transform: scale(1.03);
}

/* CAPTCHA */
.captcha-box {
    background: #fff;
    color: #000;
    font-weight: bold;
    padding: 8px 12px;
    letter-spacing: 3px;
    border-radius: 5px;
    user-select: none;
    height: -webkit-fill-available;
    align-content: center;
}

.form-control::placeholder {
    color: #4ba391;
}

/* FOOTER */
.footer {
    background: #eee;
    text-align: center;
    padding: 3px 10px;
    font-size: 13px;
    color: #333;
    align-content: center !important;
    position: relative;
}

/* VISITOR */
.visitor-box {
    position: absolute;
    bottom: unset;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    transform: translate(-50%, -50%);
    right: 0;
    top: 50%;
}

.footer p {
    font-size: 17px;
}

@media(max-width:768px) {
    .top_header .right {
        margin-top: 10px;
    }
}

.provision-list {
    list-style: none;
    padding: 0;
}

.provision-list li {
    margin-bottom: 10px;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}

.provision-list i {
    color: #00ffcc;
    margin-right: 10px;
    margin-top: 3px;
}

.footer p {
    margin: 0;
}

.web_org_title h5 {
    margin: 0;
    font-size: 30px;
    padding-bottom: 5px;
}

.web_org_title p {
    margin: 0;
    font-size: 18px;
    padding-bottom: 21px;
}

select.form-control {
    appearance: none;
    color: #fff;
    cursor: pointer;
}

select.form-control option {
    color: #000;
}




.select-wrapper {
    position: relative;
    border-radius: 10px;
    padding: 2px;
    overflow: hidden;
}

/* ANIMATED BORDER */
/* .select-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 10px;
            padding: 2px;

            background: linear-gradient(270deg, #f10f51, #033973, #ff6a00, #f10f51);
            background-size: 300% 300%;

            animation: borderMove 4s linear infinite;
            z-index: 0;
        } */

/* INNER BACKGROUND */
.select-wrapper select {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    border: none;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* OPTIONS COLOR */
.select-wrapper select option {
    color: #000;
}

/* ANIMATION */
@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* REMOVE DEFAULT SELECT ARROW */
.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 45px;
    /* space for icon */
}

/* DROPDOWN ICON */
.select-wrapper::after {
    content: '\f107';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);

    color: #fff;
    font-size: 16px;
    pointer-events: none;
    z-index: 2;

    transition: 0.3s ease;
}

/* SMOOTH ROTATE ON FOCUS */
.select-wrapper:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

.login_main_left h4 {
    padding-bottom: 20px;
}


/* =====================new-css=========================== */
.sub-options {
    margin-left: 25px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px 40px;
}

.sub-options label {
    cursor: pointer;
}

.row-item {
    margin-bottom: 15px;
}

/* COMMON TEXTAREA STYLE */
.other-textarea,
.radio-textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;

    /* smooth animation */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* FULL WIDTH IN GRID */
.other-textarea {
    grid-column: 1 / -1;
}

/* SHOW STATE */
.other-textarea.active,
.radio-textarea.active {
    max-height: 120px;
    opacity: 1;
    margin-top: 8px;
}

/* optional focus effect */
.other-textarea:focus,
.radio-textarea:focus {
    border-color: #888;
}

/* keep grid alignment */
.item {
    display: contents;
}

.sub-options {
    margin-left: 25px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px 40px;
}

.sub-options label {
    cursor: pointer;
}

/* textarea full width */
#otherText {
    grid-column: 1 / -1;
    width: 100%;
    height: 80px;
    padding: 8px;
    display: none;
}

.row-item {
    margin-bottom: 15px;
}


/* patient-details */
/* MAIN WRAPPER */
label {
    font-weight: bold !important;
    font-size: initial;
}

/* LABEL */
.form-card label {
    font-weight: 600;
    font-size: 14px;
}

/* INPUT + SELECT */
.form-control {
    border-radius: 8px;
    border: 1px solid #ccc;
    height: 55px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #033973;
    box-shadow: 0 0 0 2px rgba(3, 57, 115, 0.1);
}

/* RADIO GROUP */
.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 6px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f4f6f9;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
}

/* hover */
.radio-group label:hover {
    background: #033973;
    color: #fff;
}

/* checked style */
.radio-group input:checked {
    accent-color: #033973;
}

/* spacing fix */
/* .row .col-md-4{
    margin: 0;
} */

/* responsive */
@media (max-width: 768px) {
    .radio-group {
        flex-direction: column;
    }
}

.checkbox-group {
    display: flex;
    gap: 15px;
}

.checkbox-group .form-switch {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #fff;
    height: 55px;
    transition: all 0.3s ease;
}

.checkbox-group input {
    accent-color: #033973;
}

input#switchCheckChecked {
    margin: 0;
}

.identity-type-wrapper {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.identity-type-wrapper.active {
    opacity: 1;
    max-height: 100px;
}

/* hidden by default */
.other-input {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* show */
.other-input.active {
    max-height: 60px;
    opacity: 1;
}

/* hidden by default */
.identity-type-wrapper,
.doc-number-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* show */
.identity-type-wrapper.active,
.doc-number-wrapper.active {
    max-height: 100px;
    opacity: 1;
}


/* form */
.form-group {
    position: relative;
}

label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}

/* suggestion dropdown */
.suggestion-box {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    max-height: 180px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    margin-top: 2px;
}

.suggestion-box div {
    padding: 8px 12px;
    cursor: pointer;
    transition: 0.2s;
}

.suggestion-box div:hover {
    background: #033973;
    color: #fff;
}




/* =======================Add-clinic======================= */

.form-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.form-card h3 {
    padding-top: 20px;
}

.form-control {
    border-radius: 8px;
}

textarea.form-control {
    height: auto;
}

.btn-submit {
    background: #033973;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
}

.btn-submit:hover {
    background: #022b59;
}

/* Save */
.btn-save {
    background: #033973;
    color: #fff;
    border-radius: 8px;
}

.btn-save:hover {
    background: #022b59;
}

/* Reset */
.btn-reset {
    background: #6c757d;
    color: #fff;
    border-radius: 8px;
}

.btn-reset:hover {
    background: #5a6268;
}

/* Save Draft */
.btn-draft {
    background: #ffc107;
    color: #000;
    border-radius: 8px;
}

.btn-draft:hover {
    background: #e0a800;
}

/* Cancel */
.btn-cancel {
    background: #dc3545;
    color: #fff;
    border-radius: 8px;
}

.btn-cancel:hover {
    background: #bb2d3b;
}

.add_clinicbtn button:hover {
    color: #fff !important;
}

.add_clinicbtn {
    justify-content: center;
    align-items: center;
}

/* .machine-row {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    background: #f9fbff;
    transition: all 0.3s ease;
}

.form-control {
    border-radius: 8px;
    height: 40px;
}

.btn-add {
    background: #198754;
    color: #fff;
    border-radius: 8px;
    width: 100%;
}

.btn-remove {
    background: #dc3545;
    color: #fff;
    border-radius: 8px;
    width: 100%;
}

.form-card.add_clin {
    margin-top: 20px;
} */
button.btn.btn-add.w-100:hover {
    background: #ffc107;
    color: #000;
    border-radius: 8px;
    border: 1px solid #fff;
}

button.btn.w-100.btn-remove:hover {
    background: #dc3545;
    color: #fff;
    border-radius: 8px;
    border: 1px solid #fff;

}

.machine-row {
    margin-bottom: 10px;
    padding: 0;
    border-radius: 10px;
    background: transparent;
}

.form-control {
    border-radius: 8px;
}

/* buttons */
.btn-add {
    background: #198754;
    color: #fff;
    border-radius: 8px;
    height: 100%;
}

.btn-remove {
    background: #dc3545;
    color: #fff !important;
    border-radius: 8px;
    height: 100%;

}

.form-row.row.form_e_lab {
    gap: 0;
}


/* container */
.form-line {
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* underline input */
.line-input {
    border: none !important;
    border-bottom: 2px solid #000 !important;
    outline: none !important;
    background: transparent !important;
    width: 220px !important;
}

/* date input */
.date-input {
    border: none;
    border-bottom: 2px solid #000;
    outline: none;
    background: transparent;
    padding: 4px 6px;
    width: 160px !important;
}

/* remove default date style spacing */
input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

/* focus effect */
.line-input:focus,
.date-input:focus {
    border-bottom: 2px solid #0d6efd;
}

.form-row.result_test {
    align-items: end;
}