html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

#alert-container {
    z-index: 999;
}

.variant-title {
    font-size: x-large;
    font-weight: bold
}

.variant-header {
    font-size: larger;
    font-weight: bold
}

.search-panel {
    border: 3px solid black;
    border-radius: 5px;
    padding: 10px;
}

.title-panel {
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 10px;
    background-color: #e9ecef;
    color: grey
}

.diagnosis-panel {
    border: 1px solid #e9ecef;
    border-radius: 5px;
    padding: 10px;
    background-color: #d5e8d4;
}

/* File input area styling */

.fileInputArea {
    border-radius: 1em;
    border-width: 3px;
    border-style: solid;
    border-color: #0070c0;
    background-color: #F2F2F2;
    margin-top: 1em;
    margin-bottom: 1em;
}

.fileInputAreaDropRegion {
    display: grid;
    height: 15em;
}

.fileInputAreaHeader {
    padding: 0.5em;
    background-color: #0070c0;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
    border-bottom-width: 3px;
    border-bottom-color: #0070c0;
    border-bottom-style: solid;
    color: white
}

.fileInputAreaInfo {
    grid-row: 1;
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .fileInputAreaInfo label {
        text-align: center;
    }

.fileInputAreaInput {
    opacity: 0;
    grid-row: 1;
    grid-column: 1;
    cursor: pointer;
}

.diagnosis-panel #geneDataTable.table-bordered th {
    border-top: 1px solid rgba(0,0,0,.45);
    border-color: rgba(0,0,0,.40);
    background-color: lightgrey;
}

.diagnosis-panel #geneDataTable.table-bordered td {
    border-bottom: 1px solid rgba(0,0,0,.45);
    border-color: rgba(0,0,0,.40);
    background-color: white;
}
