.btn {
    color: white;
    background-color: #348D95
}

.nav-btn {
    color: #348D95;
    background-color: white;
    border: 1px solid #348D95;
}

.nav-btn:hover {
    color: white;
    background-color: #348D95;
    border: 1px solid #348D95;
}

.hiddenTextInput {
      border: none;
      background-color: transparent;
      width: 100%;
      padding: 0.5rem;
}

.loading-animation {
    display: none;
    position: fixed;
    justify-content: center; 
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 9999;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #348D95;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.greyColor{
    color: #495150
}

.tealColor {
    color: #348D95
}

.leftSideSpacing {
    margin-left: 5%;
}

.rightSideSpacing {
    margin-top:10px;
    display:block;
    max-width:90%;
}

.dangleRight {
    display:block;
    max-width:95%;
}

.boldText {
    font-weight:bold;
}

.center-vertical {
    vertical-align: middle;
}

.center.datatype {
   width: 200px
}

.logo {
    max-width: 25%;
    margin: 0 auto;
}

.analysisInfo {
    margin-bottom: 1.55rem;
}

.errorTableRow {
    background-color: rgba(255, 0, 0, 0.25);
}

main {
    padding-top: 10rem;
}

.subtext {
    color: gray;
    font-size: 10px;
    margin-left: auto;
    white-space: nowrap;
    width: 70%;
}

.file-name {
    width: 65%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


.form-check {
    display: flex;
    justify-content: center;
}