/* CSS file for DEMO web page*/
/* September 2023 */

div#title-bar {
    height: 70px;
}

/* if mobile device or small window size */
@media only screen and (max-width: 660px) {
    span#title-bar-detailed-info {
        display: none;
    }
  }


/* CSS for Settings titles */
h6.settings-header {
    background-color: AliceBlue
}

/* CSS for System info text in Settings */
p.sys-info {
    line-height: 100%;
}

/* CSS for Title of the Text Area box */
p#title {
    display: flex;
    justify-content: space-between;
    line-height: 5px
}

/* CSS for StatusBar of the Text Area box */
p#status-bar {
    text-align: right;
    margin-bottom: 0px;
}

/* CSS for VITASIS logo - it is clickable but we don't want to be underlined*/
a.logo {
    color: white;
    text-decoration: inherit; /* no underline */
}
a.logo:hover {
    color: white;
}

/* CSS for Error box*/
.error {
    position: relative;
    animation: shake .1s linear;
    animation-iteration-count: 3;
    border: 1px solid red;
    outline: none;
}
@keyframes shake {
    0% {
        left: -5px;
    }
    100% {
        right: -5px;
    }
}

/* ************************************************************************************************ */
/* CSS for the Dashboard modal */

h2#mainpage-title {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

div#dashboard-grid {
    font-weight: 300;
}

table {
    font-family: 'Inter', sans-serif;
    max-width:1200px; 
    width: 90%; 
    margin: 0 auto;
}

table#table-details {
    border-collapse: separate; 
    border-spacing: 0 0.5em;
}

table#table-master {
    margin-top: 20px;
}

tr {
    font-size: 0.9em;
}

table#table-master tr th {
    padding: 0px 20px;
    font-size: 0.9em;
    font-weight: 400;
    color: grey
}

table#table-master tr td {
    font-size: 1.6em;
    font-weight: 300;
    padding: 0px 20px;
}

table#table-master tr td:first-of-type {
    font-weight: 500;
}

table#table-details tr td {
  padding: 5px 20px;
  background-color: white;
  font-weight: 300;
}

table#table-details tr th {
    padding: 8px 20px;
    background-color: rgb(13, 110, 253);
    color: white;
    font-weight: 400;
}

tr td:first-of-type {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

tr td:last-of-type {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

tr th:first-of-type {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  
tr th:last-of-type {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

div#group-data {
    background: #D1EDF3; 
    border-radius: 20px; 
    overflow: hidden; 
    padding-bottom: 30px;
    margin-top: 30px;
}

i.fa-circle-check {
    color: green;
    font-size: 18px;
    margin-right: 10px;
}

i.fa-circle-xmark {
    color:red;
    font-size: 18px;
    margin-right: 10px;
}

div#dashboard-header-container {
    background: rgb(13, 110, 253);
    padding-top: 10px;
    padding-left: 50px;
    color: white;
}


/* ************************************************************************************************ */
/* CSS for the Text area */

span.FRGN {
    background-color: rgb(13, 110, 253);
    color: white;
}

span.FRGN1 {
    font-weight: 500;
    color: red;
}

span.SENT {
    color: rgb(13, 110, 253);
    background-color: rgb(13, 110, 253);
    margin: 5px;
}

span.NORMAL {
    color: black;
}

p.too-long-sentence {
    background-color: Bisque;
}

p.confirmed-sentence {
    background-color: #DAF7A6;
}

/* ************************************************************************************************ */
/* CSS for the Context menu */

#context-menu {
    background-color: rgb(13, 110, 253);
    margin: 0px;
    padding: 0px;
    border-style: none;
}

.dropdown-menu {
    min-width: inherit;
}

div.btn-group {
    width: usto;
}


/* ************************************************************************************************ */
/* CSS for disclaimer */

#disclaimer-body {
    background-color: #FDEDEC;
    border-style: none;
}