/* Container Elements */

section:not(#article) {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0px;
    scroll-margin-top: 50px;
}

#article {
    width: 1048px;
    max-width: 100%;
    padding: 30px 20px;
    scroll-margin-top: 50px;
}

.left-a {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.photo-holder {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0px;
}

/* Text Elements */

h1:not(.body h1) {
    font-size: 86px;
    font-weight: 900;
}

h2:not(#contact-modal h2, .body h2, .modal h2) {
    font-size: 64px;
    font-weight: 900;
    color: var(--pri-clr-black);
}

h3:not(.body h3, #article h3) {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
}

#article h3 {
    font-size: 48px;
    font-weight: 900;
    text-align: left;
    margin-top: 60px;
}

h5:not(.body h5) {
    width: 100%;
    font-size: 32px;
    font-weight: 900;
    text-align: left;
}

h6:not(.body h6) {
    margin-top: 5px;
    margin-bottom: -5px;
    font-size: 16px;
    font-weight: 700;
}

ul, ol {
    margin-left: 30px;
}

li {
    padding: 15px 0px;
    font-size: 16px;
    font-family: 'Roboto Mono';
}

b:not(.secp b) {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Roboto Mono';
}

.secp b {
    font-size: 22px;
    font-weight: 500;
}

#article p {
    line-height: 2rem;
}

.blue-grad {
    padding: 2px 2px;
    color: transparent;
    background-image: linear-gradient(to right, var(--pri-clr-black), var(--sec-clr-blue));
    background-clip: text;
}

.coral-text {
    color: var(--pri-clr-coral);
}

.secp {
    width: 633px;
    max-width: 100%;
    padding: 35px 0px;
    text-align: left;
    font-family: 'Roboto Mono';
    font-size: 20px;
}

.highlight-uline {
    position: relative;
    display: inline-block;
    font-family: 'Roboto Mono';
    z-index: 1;
}

.highlight-uline::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    height: 0.4em;
    width: 100%;
    background-color: var(--sec-clr-peach); 
    border-radius: 2px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transform: skewX(-15deg);
    z-index: -1;
}

/* Action Elements */

.action-btns {
    height: 72px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

button[type="button"]:not(.body button), .pri-btn, .sec-btn {
    min-width: 200px;
    padding: 0px 24px;
    padding-top: 16px;
    padding-bottom: 12px;
    text-transform: uppercase;
    text-align: center;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.pri-btn {
    color: var(--pri-clr-white);
    background-color: var(--pri-clr-coral);
    border: 2px solid var(--pri-clr-coral);
}

.sec-btn {
    color: var(--pri-clr-coral);
    background-color: var(--pri-clr-white);
    border: 2px solid var(--pri-clr-coral);
}

.sec-btn:hover {
    color: var(--pri-clr-white);
    background-color: var(--sec-clr-gray);
    border-color: var(--pri-clr-white);
}

.faq-btns {
    height: 72px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

/* Numeri Calc */ 

.body {
    position: relative;
    height: 750px;
    width: 100%;
    margin-top: 50px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    overflow: hidden;
}

.body * {
    font-family: 'Roboto', sans-serif;
}

.body .nhorz {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.body .nvert {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.body .home-icon {
    background-color: var(--main-clr);
}

.body .container {
    position: absolute;
    height: 100%;
    width: calc(100% - 25px);
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 0px 0px 40px 25px;
}

#ncalc {
    align-items: center;
    justify-content: center;
}

#ndata {
    align-items: left;
    justify-content: flex-start;
    scroll-margin-top: 80px;
}

#ncalc form {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    gap: 5px;
    padding: 20px;
}

#ncalc label {
    width: 100%;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
}

#ncalc input {
    width: 100%;
    padding: 8px;
    color: #000;
    font-size: 14px;
    border: 2px solid var(--main-clr);
    border-radius: 8px;
    outline: none;
}

.body small {
    text-align: center;
}

.body .btn-contain {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ncalc button {
    width: fit-content;
    margin-top: 20px;
    padding: 6px 80px;
    background-color: var(--action-clr);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.body .title {
    width: 450px;
}

.body .title h1 {
    width: 100%;
    text-align: left;
    font-size: 40px;
    letter-spacing: 1px;
}

.body .title h5 {
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-block-start: 0;
}

.body .line {
    height: 0px;
    width: 100%;
    margin: 50px 0px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.body .xline {
    height: 0px;
    width: 100%;
    margin: 8px 0px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.body .vals {
    width: 400px;
    padding: 20px;
}

.body .calcd {
    width: 100%;
    justify-content: space-between;
}

.body .icon-cont {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -40px;
    border: none;
    background-color: var(--chill-clr);
    color: var(--strong-clr);
    clip-path: circle(50%);
}

.body .icon-cont svg {
    color: var(--strong-clr);
}

#snake {
    height: 30px;
    width: 30px;
}

#sched {
    height: 25px;
    width: 25px;
}

#nurses-req, #nurses-sch {
    width: 121px;
    text-align: center;
}

/* Numeri Data */ 

#ndata h1 {
    padding-top: 25px;
    padding-bottom: 20px;
    font-size: 35px;
    letter-spacing: 2px;
}

#ndata h5 {
    padding-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
}

#ndata input {
    width: calc(100% - 250px);
    padding: 8px 40px;
    color: #000;
    font-size: 16px;
    border: 2px solid var(--main-clr);
    border-radius: 10px;
    outline: none;
}

#ndata label {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    margin-top: -32px;
}

#ndata label svg {
    height: 25px;
    width: 25px;
    z-index: 5;
}

#ndata label svg path {
    color: #ccc;
}

#ndata button {
    width: fit-content;
    float: right;
    padding: 8px 80px;
    background-color: var(--action-clr);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

#sort-btn {
    width: fit-content;
    min-width: fit-content;
    padding: 5px 8px;
    background-color: #f2f2f2;
    color: #888;
    font-size: 14px;
    font-weight: 300;
    border: 1px dotted #aaa;
    border-radius: 8px;
    cursor: pointer;
}

#ndata .filters {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: start;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
}

#ndata .filter {
    width: fit-content;
    min-width: fit-content;
    display: none;
    padding: 5px 8px;
    background-color: #f2f2f2;
    color: #888;
    font-size: 14px;
    font-weight: 300;
    border: 1px dotted #aaa;
    border-radius: 8px;
    cursor: pointer;

}

#ndata .scrolldiv {
    height: 100%;
    width: 100%;
    overflow-y: scroll;
}

#ndata .infobx {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0px;
    border-radius: 5px;
}

#ndata .infobx h6 {
    min-width: fit-content;
    color: #000;
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    width: calc(100% / 7.5);
}

#ndata .head {
    height: 55px;
    background-color: #ddd;
    overflow-x: scroll;
}

#ndata .head h6 {
    min-width: fit-content;
    width: calc(100% / 7.5);
}

#ndata .empty {
    width: 40px;
}

#ndata .checkbx {
    position: relative;
    min-width: 30px;
    display: block;
    margin-top: 0px;
    cursor: pointer;
}

#ndata .checkbx input[type=checkbox] {
    visibility: hidden;
}

#ndata .checkbox-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #fff;
    border: 2px solid var(--main-clr);
    border-radius: 5px;
}

#ndata .checkbx input:checked~.checkbox-container {
    background-color: #fff;
}

#ndata .checkbox-container::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid var(--main-clr);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#ndata .checkbx input:checked~.checkbox-container::after {
    display: block;
}

#dots {
    height: 20px;
    width: 20px;
    min-width: 20px;
    margin-left: -10px;
    margin-right: 10px;
    background-color: #fff;
    cursor: pointer;
}

#ndata .opt-box {
    position: absolute;
    height: 40px;
    width: 140px;
    top: 0;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background-color: #f2f2f2;
    border-radius: 5px;
}

#ndata .opt-box > div {
    cursor: pointer;
}

#ndata .opt-box svg {
    height: 18px;
    width: 18px;
}

#ndata .opt-box p {
    width: 110px;
    font-size: 14px;
}

#ndata .view-modal {
    position: absolute;
    height: 40px;
    width: calc(100% - 60px);
    top: 0;
    right: 20px;
    display: none;
    align-items: center;
    justify-content: flex-start;
    padding: 0px 20px;
    background-color: #f2f2f2;
    border-radius: 5px;
}

#ndata .view-modal p {
    position: relative;
    width: 100%;
    text-align: left;
    overflow-y: hidden;
    overflow-x: scroll;
}

#ndata .view-modal .end-comment {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Request Service Modal */
#req-ap-mark-bg {
    position: absolute;
    height: 350px;
    width: 350px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-top: -35px;
    z-index: -1;
}

/* Adjustability */

@media screen and (max-width: 1110px) {
    .body .title {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .body #searchBtn {
        display: none;
    }
    .body #searchbx {
        width: 100%;
    }
}


