:root {
    --integrus-blue: #2F6FED;
    --highlight-blue: #187CFF;
    --danger-red: red;
    --confirm-green: #17c817;
    --dark-blue: #08294C;
    --card-width: 404px;
}

body, html {
    background: #F3F7FF;
    height: 100%;
    margin: 0;
}

button.primary {
    color: #fff;
    background-color: var(--integrus-blue);
}
button.danger {
    color: #fff;
    background-color: var(--danger-red);
}
/* https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_full_page */
.background {
  background-image: url("digital-landscape.jpeg");
  height: 100%; 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#login-button {
    padding: 20px 30px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 80%;
    transform: translate(-50%, -50%);
    background-color: #6fbcda;
    font-weight: bold;
    box-shadow: 1px 1px gray;
}

/* https://www.w3schools.com/css/tryit.asp?filename=trycss_navbar_horizontal_black_active */
.navbar {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    list-style-type: none;
    margin: 0;
    margin-bottom: 20px;
    padding: 1em 2em;
    overflow: hidden;
    text-align: center;
    background-color: var(--dark-blue);
}
.navbar .mobile {
    display: none;
}

.flash-message {
  width: 100%;
  margin-top: 3em;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flash-message code {
  padding: 2em;
  background: #ffbebe;
  border-radius: 1em;
  white-space: pre-wrap;
  line-height: 1.5em;
}

#add-company {
    font-family: "Roboto", sans-serif;
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

.navbar-item {
    float: left;
    text-align: center;
}

.navbar-item a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
.navbar-item:where(.active,:hover) a {
    color: var(--highlight-blue);
}
.navbar-item.active a {
    font-weight: bold;
}

.header {
    font-family: "Poppins", sans-serif;
    padding-left: 42px;
    padding-right: 42px;
}

.app-name {
    color: white;
    font-size: 2rem;
    padding-right: 50px;
}

/* https://www.freecodecamp.org/news/css-vertical-align-how-to-center-a-div-text-or-an-image-example-code/ */
.centered-content {
    margin: 40px;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 32px;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid #EAECF0;
    background: white;
}

.coverage-explanation {
    font-size: 12px;
}

fieldset {
    padding: 40px;
    border-color: var(--integrus-blue);
    border-radius: 8px;
}

legend {
    text-align: center;
    font-weight: bold;
}

button {
    cursor: pointer;
    border-radius: 8px;
    border: none;
    padding: 12px 16px;
    text-align: center;
    font-family: "Poppins";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px; /* 100% */
    letter-spacing: 0.32px;
    text-transform: capitalize;
    transition: box-shadow 100ms;
}
button:hover:not(:disabled) {
	box-shadow: 2px 2px 4px #888;
}
button:disabled {
    cursor: not-allowed;
}

.circular-button {
    border-radius: 50%;
    color: white;
    text-shadow: 0 0 3px black;
}

.subject-action-button {
    color: white;
    background-color: #2F6FED;
}

.add-language-button {
    color: black;
    background-color: white;
    border: 1px solid var(--Neutral-300, #E1E6EF);
}

.delete-button {
    color: white;
    font-size: x-small;
    padding: 5px;
    background-color: #D2042D;
}

.search-button, .download-button, .view-button {
    display: flex;
    margin-left: 10px;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 8px;
    background: #2F6FED;
}

.submit-button {
    background-color: var(--integrus-blue);
}

.buttons-row {
    display: flex;
    gap: 5px;
}

.unclickable-button {
    background-color: gray;
    cursor: not-allowed;
}

.required-field, .coverage-explanation {
    color: #5E6368;
}

/* https://www.w3schools.com/html/tryit.asp?filename=tryhtml_table_intro */
table {
    font-family: "Inter", sans-serif;
    font-size: x-small;
    border-collapse: collapse;
    width: 100%;
    padding: 32px;
}

th, td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #dddddd;
}

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

.grid-container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(var(--card-width), 1fr));
}

#add-single-subject {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-right: var(--integrus-blue) solid;
    border-width: thin;
}

.hidden-div {
    display: none;
}

#identifier_tags {
    width: 500px;
}

.identifiers {
    margin-bottom: 10px;
}

.page-name {
    font-size: 24px;
    font-weight: 600;
}

.section-name {
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 600;
}

.subsection-name {
    font-size: 18px;
    font-weight: 500;
}

.subject-list-header {
    font-family: Inter;
}

.description-text {
    color: #5E6368;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
    margin-left: 6px;
}

#select-subject-type {
    margin-bottom: 50px;
}

ol li {
    margin-bottom: 20px;
}

.right-floater {
    float: right;
}

.asterisk {
    color: red;
}

.dollar-sign {
    font-weight: bold;
    color: darkgreen;
}
.small-text {
    font-size: smaller;
}

.warning-text {
    color: #FF2400;
}

.card {
    width: var(--card-width);
    height: 253px;
    flex-shrink: 0;
    border-radius: 16px;
    background: white;
}

.side-padded{
    padding-left: 20px;
    padding-right: 20px;
}

.total-amount {
    color: #101828;
    margin-left: 10px;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 125% */
}

.horizontal-rule {
    width: 95%;
}
