﻿/* Import Fonts */
@import url("fonts.css");

noscript {
    width:auto!important;
}

.ccisc-body {
    background-color: #F8F9FD;
}
.ccisc-remove-link-style {
    text-decoration: none;
    color: black;
}

/* --- Data Entry --- */
.ccisc-sidebar {
    background-color: #082145;
    color: white;
}

.ccisc-offcanvas-sidebar {
    background-color: #082145;
    color: white;
    
    overflow-y: auto;
    scrollbar-width: thin;
}

.ccisc-nav {
    background-color: white;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.ccisc-nav-return-dashboard {
    font-family: Roboto-Medium;
}

.ccisc-nav-toggle-offcanvas {
    font-size: 31px;
    color: black;
}
.ccisc-nav-toggle-offcanvas:hover {
    color: gray;
}

.ccisc-logo-text {
    font-size: 18px;
    font-family: Merriweather-Regular;
    color: black;
    border: none;
}

.ccisc-image {
    width: 76px;
    height: 45px;
}

.ccisc-nav-section-header {
    font-size: 24px;
    font-family: Roboto-Regular;
    opacity: 70%;
}

.ccisc-nav-section-items {
    font-size: 16px;
    font-family: Roboto-Regular;
    width: 100%;
    align-self: start;
}

.ccisc-nav-item-selected {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 2px solid white;
    text-align: left;
}

.ccisc-nav-item-selected-text {
    font-family: Roboto-Regular;
    font-weight: 400;
    color: white;
}

.ccisc-nav-item-unselected {
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}


.ccisc-completed-check {
    color: #51825C;
    width: 22px;
    height: 22px;
}


/* --- Message Board --- */
.ccisc-message-board-pre-tag {
    font-family: inherit;
    font-size: 1rem;
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.5;
    text-align: left;
    display: block;
}

/* --- Homepage --- */

/* Homepage --> Nav */
.ccisc-home-nav {
    background-color: white;
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
.ccisc-home-nav-item > .nav-link.active {
    font-family: Roboto-Medium;
    color: rgba(8,33,69,1);
    box-shadow: 0 4px 0 -1px rgba(8,33,69,1);
}
.ccisc-home-nav-item > .nav-link {
    font-family: Roboto-Medium;
    color: rgba(8,33,69,0.7);
}

/* Homepage --> Welcome */
.ccisc-home-blue {
    background-color: rgba(8,33,69,0.9);
    color: white;
}
.ccisc-home-welcome {
    font-family: Roboto-Medium;
    font-size: calc(20px + 1vw);
    display: inline-block;
    margin-bottom: 10px;
}
.ccisc-home-join {
    font-family: Roboto-Medium;
    font-size: calc(20px + 0.7vw);
    display: inline-block;
    margin-bottom: 15px
}
.ccisc-home-contact {
    font-family: Roboto-Regular;
    font-size: calc(10px + 0.7vw);
    display: inline-block;
    margin-bottom: 24px;
}



/* Homepage --> Login */
.ccisc-home-login {
    background-color: #F8F9FD;
}
.ccisc-login {
    font-family: Roboto-Medium;
    font-size: calc(20px + 0.7vw);
    color: rgba(8,33,69,1);
}
.ccisc-login-email, .ccisc-login-password {
    font-family: Roboto-Medium;
    font-size: 14px;
    color: rgba(8,33,69,0.9);

}
.ccisc-login-input, .ccisc-login-input:focus {
    max-width: 400px;
    background-color: rgba(0,0,0,0.1);
    border: none;
}

.ccisc-login-input-div {
    max-width: 400px;
}
.ccisc-login-button {
    font-family: Roboto-Regular;
    font-size: 12px;
    background-color: rgba(8,33,69,1);
    color: white;
    width: 120px;
}
.ccisc-login-button:hover {
    color: lightgray;
    background-color: rgba(8,33,69,0.7);
}

/* Homepage --> About */
.ccisc-home-about {
    background-color: white;
    border: none;
    height: max-content;
}
.ccisc-home-about-header {
    font-family: RobotoMono-Regular;
    font-size: 16px;
}
.ccisc-home-about-text {
    font-family: Roboto-Regular;
    font-size: 16px;
}




/* Edit form */

/* Green Checkmark */

.circle {
    position: relative;
    background: #51825C;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    margin-left: 4px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dashboard-circle {
    display: inline-block;
    margin-right: 8px;
}

.checkmark {
    position: absolute;
    transform: rotate(45deg) translate(-40%, -30%);
    left: 33%;
    top: 35%;
    height: calc(30px/3);
    width: calc(30px/6);
    border-bottom: 2px solid #082145;
    border-right: 2px solid #082145;
}


/* Lock icon inside the circle */
.lock-icon-inside {
    width: 10px;
    height: 10px;
    fill: #082145; /* Dark blue like your checkmark */
}


.ccisc-edit-form {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.ccisc-edit-hr {
    font-family: Roboto-Medium;
}

.ccisc-edit-error {
    color: red;
    /* Make bold */
}

/*Dropdown Tree*/
.ccisc-dropdown:read-only {
    background-color: lightgray;
}

.ccisc-dropdown-list {
    cursor: pointer;
}

.dropdown-menu {
    inset: 0px 0px auto 0px !important;
    overflow-y: auto;
    max-height: 50vh;
    width:max-content;
}

.ccisc-edit-header {
    font-family: Roboto-Regular;
    font-size: 14px;
    opacity: 0.8;
}

.ccisc-edit-header-bold {
    font-family: Roboto-Medium;
    font-size: 17px;
    opacity: 0.8;
}

.ccisc-element-label {
    font-family: Roboto-Bold;
    font-size: 15.5px;
    opacity: 0.9;
}

.ccisc-element-info {
    text-decoration: underline;
    text-decoration-style: dashed;
    text-decoration-color: darkblue;
    text-decoration-thickness: 0.2px;
    cursor: pointer;
    color: darkblue;
}

.ccisc-element-description {
    font-family: Roboto-Regular;
    font-size: 14px;
    opacity: 0.7;
}

.ccisc-table {
    font-size: 13px;
    font-family: Roboto-Regular;
}
.ccisc-table .table-active {
    background-color: lightblue;
    font-family: Roboto-Medium;
}

.ccisc-table .static-table-active {
    background-color: lightsteelblue;
    font-family: Roboto-Medium;
}

.ccisc-table .table-active:hover {
    opacity: 0.9;
}
.ccisc-table tbody {
    cursor: pointer;
}

.ccisc-risk-table {
    font-size: 13px;
    font-family: Roboto-Regular;
}

.ccisc-risk-table .table-active {
    background-color: lightgray;
    font-family: Roboto-Medium;
}

.ccisc-risk-table .select-td.table-active {
    background-color: lightblue;
    font-family: Roboto-Medium;
}

/*Table Row-Green*/
.ccisc-risk-table .table-active-green {
    background-color: #abd28c;
    font-family: Roboto-Medium;
}


/*Table Row-Yellow*/
.ccisc-risk-table .table-active-yellow {
    background-color: #fbe5d6;
    font-family: Roboto-Medium;
}
.ccisc-risk-table .table-active-yellow-dashboard {
    background-color: #fbd35c;
    font-family: Roboto-Medium;
}

/*Table Row-Red*/
.ccisc-risk-table .table-active-red {
    background-color: #ef9288;
    font-family: Roboto-Medium;
}

.nav-item-go-back {
    text-align: start;
}
.nav-item-go-back:hover {
    cursor: pointer;
}

.ccisc-weekly-dashboard-table {
    table-layout: fixed;
    min-width: 950px;
}

.ccisc-weekly-dashboard-dot {
    font-size: 35px;
    line-height: 25px;
    font-weight: 1000;
    position: relative;
    top: 3px;
}

.ccisc-weekly-dashboard-median-procedure-time-dot {
    height: 10px;
    width: 10px;
    background-color: black;
    border 1px solid black;
    border-radius: 50%;
    display: inline-block;
}

.ccisc-weekly-dashboard-median-procedure-time-outlined-dot {
    height: 10px;
    width: 10px;
    border: 1px solid black;
    border-radius: 50%;
    display: inline-block;
}

/*Locked records*/
input[type="radio"]:checked + label:not([for]),
input[type="checkbox"]:checked + label:not([for]) {
    font-weight: 500; /* Extra bold */
    border: 1px solid #ccc; /* Thin border */
    border-radius: 6px; /* Rounded edges */
    padding: 4px 8px; /* Optional: adds spacing inside the label */
    margin: 3px;
}


/*Live alerts*/
#liveAlertPlaceholder {
    position: fixed;
    top: 1rem;
    z-index: 9999;
    width: 100%;
}

/*Admin page row highlight fix*/ 
tr.table-danger td {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.textarea-field-sizing {
    field-sizing: content;
    min-width: 100px;
    max-width: 75%;
}

/* Fix truncation in DataTables ColumnControl dropdown list */
.dtcc-dropdown {
    width: auto !important;
    max-width: none !important;
}

.dtcc-dropdown-liner {
    width: auto !important;
    max-width: none !important;
}

.dtcc-list {
    width: auto !important;
    max-width: none !important;
}

.dtcc-list-buttons {
    width: auto !important;
    max-width: none !important;
}

.dtcc-list-buttons .dtcc-button {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    white-space: normal !important;
}

.dtcc-list-buttons .dtcc-button-text {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    max-width: none !important;
}