
html {
    font-size: 14px;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #20265B;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    text-align: var(--bs-body-text-align);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(67, 89, 113, 0);
    background-image: url('../img/Background1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.swal2-container {
    z-index: 2000; 
}
.d-none {
    display: none;
}

.credit-card {
    width: 350px;
    height: 200px;
    background: linear-gradient(135deg, #3a86ff, #8338ec);
    border-radius: 20px;
    padding: 20px;
    color: white;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-balance span {
    color: black;
    font-size: 14px;
    color: white;
}

.card-balance h2 {
    color: black;
    margin: 0;
    font-size: 24px;
}

.card-balance {
    margin-bottom: 20px;
}

.card-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-holder, .valid-thru {
    font-size: 14px;
}

.txtcard {
    color: black;
    margin: 0;
    font-size: 16px;
}

.card-number {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

.chip-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
}

.chip {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 3px;
}

.chip-lines span {
    display: block;
    width: 15px;
    height: 2px;
    background: white;
    margin: 2px 0;
}

.buttonhover {
    color: #fff;
    background-color: #20265B;
    border: 0;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

    .buttonhover:hover {
        background-color: #4A557F;
        transform: scale(1.05);
    }

.buttonhover:disabled {
    background-color: #20265B; 
    color: White; 
    cursor: not-allowed;
}

.buttonhover:disabled:hover {
    background-color: #20265B;
    transform: scale(1);
}

.doctor-info {
    display: flex;
    justify-content: space-between;
}

.doctor-name {
    padding-top: 10px;
    font-size: 18px;
    font-weight: bold;
    color: black;
}

.doctor-details {
    font-size: 18px;
    margin: 2px 0;
    color: black;
}

.dronline {
    display:flex;
    justify-content:flex-start;
    gap:8px;
    padding-top:15px;
}

.drcard {
    padding: 15px;
    margin-top: 10px;
    border: 1px solid lightgray;
    transition: border-color 0.3s;
}

.card.drcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.drcard.selected {
    border: 2px solid darkblue;
    position: relative;
}

.ddbox {
    padding: 2px 2px 2px 2px;
    border-radius: 6px;
    border: 1px solid #20265B;
    width: 200px;
}

.bdbox {
    padding: 2px 2px 2px 2px;
    border-radius: 6px;
    border: 1px solid #E5E5E5;
    width: 200px;
}

.submit-btn {
    padding: 5px 10px;
    background-color: #20265B;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.patient-name {
    padding-top: 10px;
    font-size: 22px;
    font-weight: bold;
    color: black;
}

.patient-details {
    font-size: 18px;
    margin: 2px 0;
    color: black;
}

.patient-details p {
    font-size: 18px;
    margin: 2px 0;
    color: black;
}

.patient-details label {
    font-size: 18px;
    margin: 2px 0;
    color: black;
}

.patsub {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom:0px;
}

.morebutton{
    color:#20265B;
    background-color:transparent;
    border:0px;
    font-weight:500;
    font-size:26px;
}

.dropdown-toggle.hide-arrow::before, .dropdown-toggle.hide-arrow::after,
.dropdown-toggle-hide-arrow > .dropdown-toggle::before,
.dropdown-toggle-hide-arrow > .dropdown-toggle::after {
    display: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    z-index: 1;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    opacity: 0;
    visibility: hidden;
}

.dropdown-content a {
        color: #333;
        padding: 10px 15px;
        text-decoration: none;
        display: block;
        transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
            background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}

.btn-blue{
    background-color:#20265B;
    color:white;
}

.btn-blue:hover {
    background-color: #1a215b;
    transform: scale(1.05);
    color:white;
}

#nottakenhead {
    display: flex;
}

    #nottakenhead select {
        margin-left: 15px;
    }

.plabel {
    font-weight: bold;
    color: black;
    font-size: 18px;
    padding-bottom: 10px;
}

.ptbox {
    padding: 5px;
    border-radius: 10px;
    border: 1px solid #6f42c1;
    width: 250px;
    background-color:white;
}

.book-now-btn {
    padding: 10px 10px 10px 10px;
    background-color: #6f42c1;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    margin-top: 10px;
}

.day1 {
    margin-bottom: 5px;
    color: forestgreen;
}

.day2 {
    margin-bottom: 5px;
    color: gray;
}

.divider {
    display: block;
    text-align: center;
    margin: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.divider .divider-text {
    position: relative;
    display: inline-block;
    font-size: 0.8rem;
    padding: 0rem 1rem;
}


.divider .divider-text:before, .divider .divider-text:after {
     content: "";
     position: absolute;
     top: 50%;
     width: 100vw;
     border-top: 1px solid rgba(67, 89, 113, 0.2);
}
    .divider .divider-text:before {
        right: 100%;
    }

    .divider .divider-text:after {
        left: 100%;
    }

    .divider.text-start .divider-text {
        padding-left: 0;
    }

    .divider.divider.divider-secondary .divider-text:before, .divider.divider.divider-secondary .divider-text:after {
        border-color: #8592a3;
    }

    .divider.divider.divider-dark .divider-text:before, .divider.divider.divider-dark .divider-text:after {
        border-color: #233446;
    }

    .divider.divider.divider-gray .divider-text:before, .divider.divider.divider-gray .divider-text:after {
        border-color: rgba(67, 89, 113, 0.1);
    }
.dashed-line {
    border-top: 1px dashed #000;
    margin: 20px 0;
}

.card {
    border:none;
    border-radius: 8px;
    background-color: white;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border-radius: 10px;
    overflow:hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-header {
    background-color: rgba(255, 255, 255, 0.0);
    padding: 15px;
    border:none;
    font-weight: bold;
    font-size: 16px;
    overflow: hidden;
}

.card-body {
    padding: 15px;
    font-size: 14px;
    color: #333;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 25px;
    flex: 1 1 auto;
    padding: 1.5rem 1.5rem;
}

.button-container {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: flex-end; 
    height: 100%; 
}
.card-footer {
    background-color: rgba(255, 255, 255, 0.0);
    padding: 10px;
    border-top: 1px solid #ddd;
    text-align: right;
}

.card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1090;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 1.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    transition: transform 0.15s ease-out;
    transform: translateY(-100px) scale(0.8);
}

.modal.show .modal-dialog {
    transform: translateY(0) scale(1);
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    height: calc(100% - 3rem);
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 3rem);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 0px solid rgba(67, 89, 113, 0.2);
    border-radius: 0.5rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1089;
    width: 100vw;
    height: 100vh;
    background-color: #435971;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0.25rem;
    border-bottom: 0px solid #d9dee3;
    border-top-left-radius: calc(0.5rem - 0px);
    border-top-right-radius: calc(0.5rem - 0px);
}

.modal-header .btn-close {
     padding: 0.125rem 0.75rem;
     margin: -0.125rem -0.75rem -0.125rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.53;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1.5rem;
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 1.25rem;
    border-top: 0px solid #d9dee3;
    border-bottom-right-radius: calc(0.5rem - 0px);
    border-bottom-left-radius: calc(0.5rem - 0px);
}

.modal-footer > * {
    margin: 0.25rem;
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}

.modal-fullscreen .modal-header {
    border-radius: 0;
}

.modal-fullscreen .modal-body {
    overflow-y: auto;
}

.modal-fullscreen .modal-footer {
    border-radius: 0;
}

.modal-open .tooltip {
    z-index: 1092;
}

.modal-open .popover {
    z-index: 1091;
}

.modal-content {
    box-shadow: 0 2px 16px 0 rgba(67, 89, 113, 0.45);
}

.modal .btn-close {
    background-color: #fff;
    border-radius: 0.5rem;
    opacity: 1;
    padding: 0.635rem;
    box-shadow: 0 0.125rem 0.25rem rgba(161, 172, 184, 0.4);
    transition: all 0.23s ease 0.1s;
    transform: translate(23px, -25px);
}

.modal .btn-close:hover, .modal .btn-close:focus, .modal .btn-close:active {
     opacity: 1;
     outline: none;
     transform: translate(20px, -20px);
}

.modal .modal-header .btn-close {
    margin-top: -1.25rem;
}

.modal-footer {
    padding: 0.25rem 1.5rem 1.5rem;
}

.modal-dialog-scrollable .btn-close,
.modal-fullscreen .btn-close,
.modal-top .btn-close {
    box-shadow: none;
    transform: translate(0, 0) !important;
}

.modal-dialog-scrollable .btn-close:hover,
.modal-fullscreen .btn-close:hover,
.modal-top .btn-close:hover {
    transform: translate(0, 0) !important;
}

.modal-top .modal-dialog {
    margin-top: 0;
}

.modal-top .modal-content {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 1.625rem);
    padding-left: var(--bs-gutter-x, 1.625rem);
    margin-right: auto;
    margin-left: auto;
}
.go-back-btn {
    border-top-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    color: #535D71;
    font-weight: 500;
    font-size: 14px;
   background-color:white;
}

.next-btn {
    background-color:#20265B;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 5px; 
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease;
    color:#fff;
    
}
    .next-btn:disabled {
        background-color: #20265B;
        color: #fff;
    }
    .next-btn:hover {
        background-color: #20265B;
        color: aliceblue;
        transform: scale(1.05);
    }

.go-back-btn i, .next-btn i {
    margin-right: 5px; 
}

.next-btn i {
    margin-left: 5px;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:1900;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.25em;
}

.hidden {
    display: none;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin: 20px 0;
}

.calendar-header {
    grid-column: span 7;
    text-align: center;
}

.day {
    border: 1px solid #ddd;
    text-align: center;
    padding: 15px 0;
    border-radius: 5px;
    cursor: pointer;
}

.disabled-day {
    background-color: #f0f0f0;
    color: #aaa;
    cursor: not-allowed;
}

.current-day {
   border-color:#20265B;
}

.selected-day {
    background-color: #20265B;
    color: #fff;
}

.prev-month, .next-month {
    color: #aaa;
}

#selectedDate {
    margin-top: 20px;
    font-size: 1.2em;
}

.days-container {
    grid-column: span 7;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}




.time-slot {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.disabled-time {
    background-color: #f0f0f0;
    color: #aaa;
    cursor: not-allowed;
}

.selected-time {
    background-color: #20265B;
    color: #fff;
}

.datespace{
    margin-top:20px;
    margin-bottom:20px;
}


h2 {
    color: #20265B;
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    color: #4A4A4A;
}

.customer-details {
    margin: 20px 0;
}

.total-amount {
    font-size: 20px;
    color: #2D2F82;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #20265B;
}

.paymentmodal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: hidden; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.paymentmodal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 800px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.refdbbox {
    margin-left: 25px;
    padding: 2px 2px 2px 2px;
    border-radius: 6px;
    border: 1px solid #6f42c1;
    width: 200px;
}

.plabel1 {
    margin-top: 10px;
    font-weight: bold;
}

#rates {
    display: flex;
    justify-content: space-between;
}

.ptbox1 {
    border-radius: 15px;
    border-color: rgba(54, 45, 134,0.5);
    padding-left: 10px;
}

.paymentcontainer {
    max-width: 300px;
    font-family: Arial, sans-serif;
    margin-left: 25px;
    padding-top: 10px;
}

.paymentcontainer div {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

p {
    margin: 0;
}

.nb {
    font-weight: bold;
}

#paymentmodecontainer {
    display: flex;
    justify-content: space-evenly;
}

#paymentmode {
    display: flex;
    justify-content: space-between;
}

.paymentmoredetailscontainer {
    display: flex;
    justify-content: space-between;
    width: 400px;
    margin-top: 10px;
}

.bankdbox {
    border-radius: 15px;
    border-width: 2px;
    border-color: rgba(54, 45, 134,0.5);
}

#prepaid {
    margin-left: 25px;
}

.ptbox2 {
    border-radius: 15px;
    border-color: rgba(54, 45, 134,0.5);
    padding-left: 10px;
    width: 100px;
    padding-left: 10px;
}

.paymentmoredbbox {
    padding-left: 5px;
    border-radius: 15px;
    border-width: 2px;
    border-color: rgba(54, 45, 134,0.5);
}

.credit-card {
    width: 350px;
    height: 200px;
    background: linear-gradient(135deg, #3a86ff, #8338ec);
    border-radius: 20px;
    padding: 20px;
    color: white;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-balance span {
    color: black;
    font-size: 14px;
    color: white;
}

.card-balance h2 {
    color: black;
    margin: 0;
    font-size: 24px;
}

.card-balance {
    margin-bottom: 20px;
}

.card-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-holder, .valid-thru {
    font-size: 14px;
}

.txtcard {
    color: black;
    margin: 0;
    font-size: 16px;
}

.card-number {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

.chip-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
}

.chip {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 3px;
}

.chip-lines span {
    display: block;
    width: 15px;
    height: 2px;
    background: white;
    margin: 2px 0;
}


.credit-card {
    width: 350px;
    height: 200px;
    background: linear-gradient(135deg, #3a86ff, #8338ec);
    border-radius: 20px;
    padding: 20px;
    color: white;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-balance span {
    color: black;
    font-size: 14px;
    color: white;
}

.card-balance h2 {
    color: black;
    margin: 0;
    font-size: 24px;
}

.card-balance {
    margin-bottom: 20px;
}

.card-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-holder, .valid-thru {
    font-size: 14px;
}

.txtcard {
    color: black;
    margin: 0;
    font-size: 16px;
}

.card-number {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

.chip-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
}

.chip {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 3px;
}

.chip-lines span {
    display: block;
    width: 15px;
    height: 2px;
    background: white;
    margin: 2px 0;
}

* {
    font-family: 'Poppins', sans-serif;
}

::-webkit-scrollbar {
    width: 2px; 
    height:0px;
}

::-webkit-scrollbar-track {
    background-color:transparent;
}

::-webkit-scrollbar-thumb {
    background: #20265B;
}

.scrollable-container {
    overflow-y: auto;
}

.searchContainer {
    position: relative;
    width: 250px; 
}

.searchButton {
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color:#20265B;
    display: inline-block;
    border: 0;
    position: absolute;
    left: 0; 
    z-index: 1;
    cursor: pointer;
    transition: left 0.4s ease, transform 0.4s ease;
}

.searchBox {
    width: 250px;
    background: #fff;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.searchBox:hover > .searchInput {
    width: 180px;
    opacity: 1;
}

.searchContainer:hover > .searchButton {
    transform: scale(1.2);
    background-color: transparent;
}

.searchInput {
    border-width:0px 0px 0px 0px;
    background: none;
    outline: none;
    color: black;
    font-size: 16px;
    width: 0;
    opacity: 0;
    transition: width 0.4s ease, opacity 0.4s ease;
    line-height: 40px;
    padding: 0;
}

.searchContainer:hover > .searchBox {
    opacity: 1;
    visibility: visible;
}

.searchContainer:hover > .searchButton {
    left: 200px; 
    transform: scale(1.2);
    color: #20265B;
}

.container {
    padding-top:30px;
}
.main_div {
    display: flex;
    justify-content: flex-start;
    gap:30px;
}

.main_content {
    display: block;
}

.nav-pills-style {
    padding-left: 10px;
    margin-bottom: 30px;
}

.nav-link .fa {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.0);
    color: #20265B;
    transition: background-color 0.3s, color 0.3s;
}

.nav-link.active .fa {
    background-color: #20265B;
    color: #fff;
}

.nav-pills .nav-link {
    color: #535D71;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    border: none;
    line-height: 16px;
    font-weight: 500;
    padding-bottom: 20px;
}

.nav-pills .nav-link.active {
    color: #20265B;
    background-color: transparent;
}

.slot-link .fa {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.0);
    color: #20265B;
    transition: background-color 0.3s, color 0.3s;
}

.slot-link.active .fa {
    background-color: #20265B;
    color: #fff;
}

.nav-pills .slot-link {
    color: #535D71;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    border: none;
    line-height: 16px;
    font-weight: 500;
    padding-bottom: 20px;
}

.nav-pills .slot-link.active {
    color: #20265B;
    background-color: transparent;
}
.slot-link

.main_card {
    width: 310px;
    height: 70px;
}

.card-body-content {
    height: 700px;
}

.card-body-main {
    padding:10px 0px 0px 0px;
}

.slot-booking {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 770px) {
    .nav-pills .nav-link {
        font-size: 0;
        padding-bottom: 0;
    }

    .nav-link .fa {
        font-size: 20px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        padding-bottom: 10px;
    }

    .card-body-main {
        padding: 0px 0px 8px 0px;
    }

}

@media (max-width: 1405px) {
    .card-body-content {
        height: auto;
    }


    .main_div {
        display: block;
    }

    .main_content {
        display: flex;
        justify-content: flex-start;
        gap: 10px;
    }

    .main_card {
        width: auto;
        height: auto;
    }

    .nav-pills-style {
        padding-left: 0px;
        margin-bottom: 0px;
    }

    .content-card{
        margin-top:10px;
    }

}
@media (min-width: 1400px){
    .reftab {
        width: 500px;
    }
    .data-content {
        width: 900px;
    }
    .cat-div{
        width:520px;
    }
    .cat-dropdown{
        width:300px;
    }
    
}

@media (max-width:991px){
    .slot-booking {
        display: block;
    }
}

@media (min-width:992px){
    .slot-body {
        width: 400px;
        height: 533px;
    }
    .calendar-body {
        width: 448px;
    }
}

@media (min-width: 1410px){
    .main_card {
        width: 14rem;
        height: 250px;
    }
}

@media (max-width:520px){
    .val-div{
        padding-bottom:10px;
    }
    
    .cat-div{
        padding-bottom:10px;
    }
}

@media (min-width:520px){
    .editcat-div {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .cat-dropdown {
        width: 230px;
    }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0;
    }
        

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 991.98px) {
    .modal-onboarding .onboarding-horizontal {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .modal .modal-dialog:not(.modal-fullscreen) {
        padding: 0 0.75rem;
        padding-left: 0.75rem !important;
    }

    .modal .carousel-control-prev,
    .modal .carousel-control-next {
        display: none;
    }
}

@media (min-width: 576px) {
    .modal-content {
        box-shadow: 0 2px 20px 0 rgba(67, 89, 113, 0.45);
    }

    .modal-sm .modal-dialog {
        max-width: 22.5rem;
    }
}

@media (min-width: 1200px) {
    .modal-xl .modal-dialog {
        max-width: 1140px;
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0;
    }
}

@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        max-width: 50rem;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 35rem;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-sm {
        max-width: 22.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}

.psearch{
    display:flex;
    justify-content:flex-start;
    gap:10px;
}

.PbuttonDiv{
    display:flex;
    justify-content:space-between;
}

.table tbody tr.selected {
    background-color: #d1ecf1; 
}

#emrmen {
    display: flex;
    justify-content: center;
}

.go-back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    padding: 10px 20px;
    background: linear-gradient(to right, #1b295b, #133a87);
    border-radius: 30px;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

    .go-back-button:hover {
        background: linear-gradient(to right, #133a87, #1b295b);
    }

    .go-back-button .icon {
        display: inline-block;
        margin-left: 10px;
    }

        .go-back-button .icon::before {
            content: '\2190'; 
            font-size: 18px;
        }


#firstpatdet {
    padding-top:0px;
    margin-left:60px;
    max-height: 250px;
    max-width:850px;
    overflow-y: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead.thead-dark th {
    background-color: #343a40;
    color: white;
    text-align: center;
}

tbody tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

tbody tr.selected-row {
    background-color: #007bff !important;
    color: white;
}

th, td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}

.highlight {
    background-color: blue;
    color: white;
}
.btn-outline-blue {
    font-size:14px;
    color: black;
    padding:8px 0px 8px 0px;
    border-color: #20265B;
    border-radius:8px;
}
    .btn-outline-blue:hover {
        color: white;
        border-color: #20265B;
        border-radius: 8px;
        background-color: #3A4197;
    }

    .btn-active {
        color: #fff;
        background-color: #20265B;
        border-color: #20265B;
    }

.selecteddoccard {
    border: 2px solid #20265B;
}

.selectedtccard {
    border: 2px solid #20265B;
    background-color:#20265B;
    color:white;
}

.details-section{
    margin:30px 0px 30px 0px;
}

.Bookamount{
    margin-bottom:10px;
    display:flex;
    justify-content:space-between;
}
.pdataalign {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.Plabels {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-right: 5px;
}

.Pcolons {
    display: flex;
    flex-direction: column;
    margin-right: 5px;
}

.Pvalues {
    display: flex;
    flex-direction: column;
}
.flip-card {
    float: right;
    background-color: transparent;
    width: 10vh;
    height: 6vh;
    perspective: 1000px;
    border-radius: 10px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 10px;
}

.flip-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    font-family: Arial, sans-serif;
    border-radius: 10px;
}

.flip-card-front {
    background-color: transparent;
}

#hospital_logo {
    width: 10vh;
    height: 6vh;
}

#grapeslogo {
    width: 10vh;
    height: 5vh;
}

.time-slots-container {
    position: relative;
    min-height: 200px;
    margin-top: 20px;
    width: 100%;
    display: grid;
    justify-content: space-between;
}

.slot-content{
    min-height: 200px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}
    .time-slots h5 {
        text-align: center;
        margin-bottom: 10px;
    }

.slot-button {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.maeslot {
    background-color: #fff !important;
    color: #20265B !important;
}

    .maeslot-active {
        background-color: #20265B !important;
        color: white !important;
    }

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #a70000;
    }

    50% {
        box-shadow: none;
    }
}

.placeholder-red::placeholder {
    color: red;
}