/*---------------------------------------------------- Color------------------------- ------------*/


/* Dark mode overrides */
body.dark {
    --white: #0c0c0c;
    --white-two: #3c3c3c;
    --white-three: #8c8c8c;
    --primary-bg: #eaddff;
    --black-one: #fff;
    --black-two: #cfcfcf;
    --black-three: #FCFBF9;
    --link-color: #ff9d00;

}

:root {

    --white: #fff;
    --white-two: #FCFBF9;
    --white-three: #cfcfcf;
    --primary-bg: #663aae;
    --black-one: #0c0c0c;
    --black-two: #3c3c3c;
    --black-three: #8c8c8c;
    --link-color: #e98e00;
}

/*---------------------------------------------------- Text Selection------------------------- ------------*/
::-moz-selection {
    /* Code for Firefox */
    background-color: var(--primary-color);
    color: var(--white);
}

::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

/*---------------------------------------------------- Universal selector ------------------------- ------------*/

/* For Chrome, Safari and Edge */
::-webkit-scrollbar {
    display: none;
}

/* For Firefox */
html {
    scrollbar-width: none;
    /* hides scrollbar */
    -ms-overflow-style: none;
    /* IE and Edge */
    scroll-behavior: smooth;
}


* {
    padding: 0;
    margin: 0;
    font-family: "Noto Sans", sans-serif;

}

/* ✅ Disable text selection */
body {
    -webkit-user-select: none;
    /* Chrome, Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE/Edge */
    user-select: none;
    /* Standard */
    background-color: var(--white);
    color: var(--black-one);
}

.conSection {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 90vw;
}

h2 {
    font-size: 22px;
    font-weight: bold;

}

h2.title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-bg);
    transition: all 0.3s ease-in-out;
}

p {
    font-size: 14px;
}



.navbar {
    position: fixed;
    left: 0;
    bottom: -1px;
    z-index: 999;
    width: 100%;
    border-top: 1px solid var(--white-three);
    background: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);


}

/* Style the tab */
.navbar .tab {
    overflow: hidden;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

/* Style the buttons inside the tab */
.navbar .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--black-three);
    transition: all 0.3s ease-in-out;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 72px;
    padding: 4px 0 8px;
    text-transform: capitalize;
    border-radius: 0;

}

.navbar .tab button i {
    font-size: 22px;
    color: var(--black-three);
}



/* Create an active/current tablink class */
.navbar .tab button.active {
    color: var(--primary-bg);
    font-weight: 600;
    border-top: 3px solid;
}

.navbar .tab button.active i {
    color: var(--primary-bg);
}






/* Style the tab content */
.screens {
    display: none;
    width: 100%;
}

header {
    padding: 10px 0 6px;

}

header img {
    height: 48px !important;
    margin-bottom: 0 !important;
}

.homeCon {
    margin: 0 0 80px;
    min-height: 100vh;
}

.screenCon {
    margin: 20px 0 80px;
    min-height: 100vh;
}

.heading {

    margin: 8px 0 24px;
}

/* Sticky class */
.stickyHeading {
    transition: all 0.3s ease-in-out;
}

.stickyHeading.sticky {
    margin: 0;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 999;
    border-bottom: 1px solid var(--white-three);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 0;
}

.stickyHeading.sticky p {
    display: none;
}

.stickyHeading.sticky h2 {
    font-size: 14px;
    color: #663aae;
}

.heading .profileBtn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: var(--primary-bg);
    border-radius: 100px;
}

.heading .profileBtn i {

    color: var(--white);
}

.card {
    padding: 10px 16px 16px;
    border-radius: 12px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    margin: 16px 0;
    border: 1px solid var(--white-two);
}

.card h4 {
    margin: 16px 0;
    color: var(--primary-bg);
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
}

.card p {
    margin: 8px 0;
    padding-left: 5px;
}

.primaryCard {
    background-color: var(--primary-bg);
    color: var(--white);
    border-color: var(--primary-bg);
}

/* When the doctor is currently on duty (inside slot) */
.primaryCard.on-duty {
    background-color: #28a745;
    /* bright green */
    border-color: #1e7e34;
    color: #fff;
    box-shadow: 0 0 12px rgba(40, 167, 69, 0.5);
}

.card.primaryCard h4 {
    color: var(--white);
}

.secondaryCard {
    background-color: var(--link-color);
    color: var(--white);
    border-color: var(--link-color);
}

.card.secondaryCard h4 {
    color: var(--white);
}


.grid2 .card {
    margin: 0;
}

.card.cardLink {
    padding: 32px 20px 28px;
    border-radius: 8px;
}

.card.cardLink h3 {
    display: flex;
    align-items: end;
    gap: 20px;
    justify-content: space-between;
    font-weight: 300;
    font-size: 12px;
}

.callsCon {
    margin-top: 10px;
}

.callsCon .calls {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
    margin: 10px 0;
    cursor: pointer;
}

.callsCon .calls .datetime {
    width: 64px;
    height: 64px;
    padding: 8px 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
    background-color: var(--primary-bg);
    color: var(--white);
}

.callsCon .calls .datetime h5 {
    font-size: 16px;
    line-height: 13px;
    font-weight: 300;
}



.callsCon .calls .datetime h6 {
    font-weight: 400px;
    font-size: 9px;
}

.callsCon .calls .callsRight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 80px);
    border-bottom: 1px solid var(--white-three);
    padding: 6px 0 10px;
}

.callsCon .calls:last-child {
    margin-bottom: 0;
}

.callsCon .calls:last-child .callsRight {
    border-bottom: none;
}


.callsCon .calls .callsRight h5 {
    font-size: 16px;
    margin-bottom: 3px;
    font-weight: 500;
}

.callsCon .calls .callsRight p {
    font-size: 12px;
    line-height: 19px;
    padding-left: 0;
    margin: 0;
}

.callsCon .calls .callsRight i {
    color: var(--primary-bg);
}

.textSuccess {
    color: rgb(30, 130, 50);
}

.textDanger {
    color: rgb(255, 0, 60);
}

.callDetailsScreen {
    background-color: var(--white);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
    height: 100vh;
    width: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.callDetailsScreen.active {
    width: 100vw;
    overflow: auto;
}

.callDetailsHead {
    width: 100%;
    background-color: var(--primary-bg);
    color: var(--white);
    padding: 30px 0 20px;
    text-align: center;
    position: relative;
    margin-bottom: 12px;


}

.callDetailsHead .closeBtn {
    position: absolute;
    left: 10px;
    top: 20px;
    width: 32px;
    height: 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-three);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-bg);
    cursor: pointer;

}

.callDetailsHead h5 {
    font-size: 36px;
    font-weight: 200;
}

.callDetailsHead h6 {
    font-size: 17px;
    font-weight: 500;
}

.callDetailsCon {
    margin-bottom: 82px;
}

.callDetailsScreen .patientInfo {
    margin: 20px 0;
}

.callDetailsScreen .patientInfo p {
    margin: 8px 0;
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 10px 0;
}

button {
    border: none;
    padding: 15px 10px;
    border-radius: 8px;
    background-color: var(--primary-bg);
    color: var(--white);
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    text-transform: uppercase;
}

.btnSuccess {
    background-color: rgb(30, 130, 50);
}

.btnWarning {
    background-color: var(--link-color);
}

input {
    background-color: var(--white-two);
    color: var(--black-two);
    padding: 10px 16px !important;
    border-radius: 10px;
    border: none;
    width: calc(100% - 32px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    font-size: 16px;
    border: 1px solid var(--white-two);
}

textarea {
    background-color: transparent;
    color: var(--black-two);
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    width: calc(100% - 32px);
    font-size: 16px;
    border: 1px solid var(--black-three);
}

textarea:focus {
    outline: none;
    border: 1px solid var(--primary-bg);
}

input:focus {
    outline: none;
    border: 1px solid var(--primary-bg);
}

select {
    background-color: var(--white-two);
    color: var(--black-two);
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    font-size: 16px;
    border: 1px solid var(--white-two);
}

select:focus {
    outline: none;
    border: 1px solid var(--primary-bg);
}

.filterSec {
    margin-bottom: 20px;
}


.myModal {
    width: 100vw;
    height: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    bottom: 0;
    left: 0;
    height: 0;
    overflow: hidden;
    z-index: 999999;
    transition: all 0.2s ease-in-out;
}

.myModalCon {
    position: absolute;
    width: 100%;
    height: fit-content;
    background-color: var(--white);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    left: 0;
    bottom: 0;
    padding: 48px 0 32px;
    transition: all 0.2s ease-in-out;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.remarkModal.activemodal {
    height: 100vh;
}

.referModal.activeRefer {
    height: 100vh;
}


.myModalCon .crossBtn {
    position: absolute;
    right: 32px;
    top: 32px;
    cursor: pointer;
}

.myModalCon h2 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--white-three);
}

.myModalCon textarea {
    background-color: var(--white-two);
    color: var(--black-two);
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    width: calc(100% - 32px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin: 12px 0 16px;
    font-size: 16px;
    border: 1px solid var(--white-two);
}

.myModalCon textarea:focus {
    outline: none;
    border: 1px solid var(--primary-bg);
}

.card.notificationCard {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.notificationCard h6 {
    font-weight: 600;
    color: var(--link-color);
}

.notificationCard h5 {
    font-weight: 400;
    margin-top: 6px;
}

.notificationCard i {
    color: rgb(255, 0, 60);
    cursor: pointer;
}

.profileCard {
    padding: 24px 20px;
    position: relative;
}

.profilecardSuccess {
    background-color: rgb(228, 255, 228);
    border: 1px solid rgb(0, 155, 62);
    color: #000;
}

.profilecardSuccess::after {
    content: url('../images/checkmark.png');
    position: absolute;
    right: 6px;
    bottom: 6px;
    z-index: 1;
    opacity: 0.5;
}

.profilecardPending::after {
    content: url('../images/loading.png');
    position: absolute;
    right: 6px;
    bottom: 6px;
    z-index: 1;
    opacity: 0.3;
}

.profilecardDanger {
    background-color: rgb(255, 207, 207);
    border: 1px solid rgb(215, 0, 0);
    color: #000;
}

.profilecardDanger::after {
    content: url('../images/delete.png');
    position: absolute;
    right: 6px;
    bottom: 6px;
    z-index: 1;
    opacity: 0.5;
}

.profileCard p {
    padding-left: 0;
    position: relative;
    z-index: 2;
}

.profileCard input {
    margin: 6px 0 0;
}

.profileCard textarea {
    margin: 6px 0 0;
}

.profileCard h3 {
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.profileCard form button {
    margin-top: 16px;
}

button.logoutBtn {
    width: fit-content;
    background-color: rgb(255, 0, 60);
    padding: 8px 14px;
    margin-top: 16px;
    font-size: 14px;

}

.loginSec {
    justify-content: center;
    overflow: hidden;

}

.loginSec .formCon {
    width: 90%;
    height: 80vh;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loginSec .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loginSec img {
    height: 60px;
    margin-bottom: 30px;
}

.loginSec form {
    width: 100%;
    padding-bottom: 24px;
    display: contents;
}

.ifLoginCon {
    width: 100%;
}

.ifLoginCon a {
    text-decoration: none;
}

.ifLoginCon .card {
    padding: 32px 20px;
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.ifLoginCon .card i {
    font-size: 24px;
    color: var(--link-color);
}

.ifLoginCon .card h4 {
    margin: 0;
    text-transform: uppercase;
}

.loginSec form input {
    margin-bottom: 16px;
    padding: 12px 16px;
    width: calc(100% - 32px);
}

.password-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.password-wrap input.password {
    padding-right: 40px;
}

.password-toggle {
    position: absolute;
    top: 13px;
    right: 13px;
    border: none;
    background: none;
    cursor: pointer;
    margin-top: 0 !important;
    width: fit-content;
    padding: 0;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--black-one);
}

.loginSec form button {
    margin-top: 20px;

}

.loadingSec {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loadingSec img {
    height: 100px;
    margin-bottom: 20px;
}

/* From Uiverse.io by mrhyddenn */
.spinner {
    font-size: 28px;
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
}

.spinner.center {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.spinner .spinner-blade {
    position: absolute;
    left: 0.4629em;
    bottom: 0;
    width: 0.074em;
    height: 0.2777em;
    border-radius: 0.0555em;
    background-color: transparent;
    -webkit-transform-origin: center -0.2222em;
    -ms-transform-origin: center -0.2222em;
    transform-origin: center -0.2222em;
    animation: spinner-fade9234 1s infinite linear;
}

.spinner .spinner-blade:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.spinner .spinner-blade:nth-child(2) {
    -webkit-animation-delay: 0.083s;
    animation-delay: 0.083s;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.spinner .spinner-blade:nth-child(3) {
    -webkit-animation-delay: 0.166s;
    animation-delay: 0.166s;
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.spinner .spinner-blade:nth-child(4) {
    -webkit-animation-delay: 0.249s;
    animation-delay: 0.249s;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.spinner .spinner-blade:nth-child(5) {
    -webkit-animation-delay: 0.332s;
    animation-delay: 0.332s;
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.spinner .spinner-blade:nth-child(6) {
    -webkit-animation-delay: 0.415s;
    animation-delay: 0.415s;
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.spinner .spinner-blade:nth-child(7) {
    -webkit-animation-delay: 0.498s;
    animation-delay: 0.498s;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.spinner .spinner-blade:nth-child(8) {
    -webkit-animation-delay: 0.581s;
    animation-delay: 0.581s;
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.spinner .spinner-blade:nth-child(9) {
    -webkit-animation-delay: 0.664s;
    animation-delay: 0.664s;
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.spinner .spinner-blade:nth-child(10) {
    -webkit-animation-delay: 0.747s;
    animation-delay: 0.747s;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.spinner .spinner-blade:nth-child(11) {
    -webkit-animation-delay: 0.83s;
    animation-delay: 0.83s;
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.spinner .spinner-blade:nth-child(12) {
    -webkit-animation-delay: 0.913s;
    animation-delay: 0.913s;
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

@keyframes spinner-fade9234 {
    0% {
        background-color: transparent;
    }

    100% {
        background-color: transparent;
    }
}

.logoFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logoFlex .toggleColor {
    cursor: pointer;
    color: var(--black-one);
}






/* Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    /* Hidden by default */
    z-index: 1000;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start outside left */
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1001;
    transition: all 0.5s ease;
    /* Slide animation */
    overflow-y: auto;

}

/* Show modal */
.modal.show {
    right: 0;
}

.close-modal i {
    color: var(--white-three);
}

.addcall {
    background-color: rgb(44, 172, 46);
}

.callsTab {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.callsTab button {
    background-color: var(--white);
    color: var(--primary-bg);
    border: 2px solid var(--primary-bg);
    font-size: 13px;
    font-weight: 600;
}

.callsTab button.active {
    background: var(--primary-bg);
    color: var(--white);
}

/* Sections */
.incomingcallcon,
.generatecallcon {
    display: none;

}

/* Default active */
.activeTab {
    display: block;
}

/* Slide in animation */
@keyframes slideLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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



.addcallmodal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 9999;
}

.addcallmodal.active {
    opacity: 1;
    visibility: visible;
}

.addcallmodal .modalContent {
    background: var(--white);
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.addcallmodal.active .modalContent {
    transform: translateX(0);
}

.modalHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 16px;
    background: var(--primary-bg);
    color: var(--white);
}

.modalHeader h3 {
    margin: 0;
    font-size: 18px;
}

.modalHeader .closeModal {
    width: 32px;
    height: 32px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-three);
    color: var(--primary-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;

}

.modalBody form {
    margin: 0;
    margin-bottom: 32px;
}

.addcallcon {
    max-height: 80vh;
    overflow: auto;
    padding: 28px 0;
}

.flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.flexBetween {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.flexBetween .toggleColor {
    margin-top: 6px;
}

form label {
    margin: 16px 0 6px;
    font-size: 12px;
    font-weight: 600;
    display: block;

}

.imagezoomcon {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.imagezoomcon img {
    width: 100%;
    transition: transform 0.3s ease;
    object-fit: contain;
    cursor: grab;
    transform-origin: center center;
}

.zoom-controls,
.move-controls {
    margin-top: 10px;
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.zoom-controls button,
.move-controls button {
    background: #0c172f;
    color: white;
    border: none;
    padding: 6px 12px;
    margin: 3px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 14px;
    font-weight: bold;
    width: fit-content;
    margin-bottom: 5px;
}

.zoom-controls button:hover,
.move-controls button:hover {
    background: #1d2b53;
}

.move-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.move-controls button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.uhidinputCon {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

#searchUhidBtn {
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}
