html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}


.font-size-24 {
    font-size: 24px;
}



.dropbtn {
    background-color: #e5e5e5;
    color: black;
    padding: 8px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 29px;
    width: 400px;
    padding: 7px 12px;
}

.dropdown-content a {
    color: black;
    padding: 2px 4px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #cdcdcd;
}

.search-result-item {
    box-shadow: 1px 0px 9px 0px rgba(214,201,201,0.75);
    -webkit-box-shadow: 1px 0px 9px 0px rgba(214,201,201,0.75);
    -moz-box-shadow: 1px 0px 9px 0px rgba(214,201,201,0.75);
    margin-bottom: 25px !important;
    border-width: 0px !important;
}

.search-tags {
    background-color: #f5f5f5;
    padding: 5px 5px;
}

.decision {
    font-size: 15px;
    border-left: 6px solid #e0e0e0;
    padding-left: 12px;
    background-color: #fbfbfb;
}

.decision.accepted {
    border-left: 6px solid #0ecb1e;
    padding-left: 12px;
    background-color: #d9ffdc;
}

.decision.rejected {
    border-left: 6px solid #d43708;
    padding-left: 12px;
    background-color: #f7e7e3;
}

.decision.undecided {
    border-left: 6px solid #ffdf06;
    padding-left: 12px;
    background-color: #fffbe0;
}


.text.accepted {
    background-color: #d9ffdc;
    padding: 1px 3px;
    font-size: 13px;
    font-weight: bold;
    margin-left: 10px;
}

.text.rejected {
    background-color: #d43708;
    color: #fff;
    padding: 1px 3px;
    font-size: 13px;
    font-weight: bold;
    margin-left: 10px;
}

.text.undecided {
    background-color: #ffdf06;
    padding: 1px 3px;
    font-size: 13px;
    font-weight: bold;
    margin-left: 10px;
}


.font-size-small {
    font-size: 12px;
}


.select-all-link, .unselect-all-link {
    background-color: #fff;
}

.select-all-link:hover, .unselect-all-link:hover {
    background-color: #fff !important;
    text-decoration: underline;
}


.dropdown-toggle {
    background-color: #eff3f3 !important;
    color: #333 !important;
}


.chart-container {
    width: 100%;
    height: auto;
}

.search-count {
    padding: 3px 12px;
    background-color: #e0f1f9;
    display: inline-block;
    margin-bottom: 7px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 13px;
}


.opacity20 {
    opacity: 0.2;
}

.loading-message {
    position: absolute;
    left: 40%;
}

.loading-message div {
    position: relative;
    top: -45px;
    font-size: 15px;
    background-color: #fcffa5;
    padding: 4px 6px;
    font-weight: bold;
}


.selected-filters {
    border: 0px solid #ccc;
    margin-top: 0px;
    margin-bottom: 10px;
    /*display: flex;*/
    background-color: #f2f2f2;
    padding: 2px 4px;
    border-radius: 6px;
}

.selected-filters div {
    /*background-color: #eee;
    border-radius: 6px;
    padding: 2px 10px 2px 7px;
    font-size: 13px;*/
    /*margin-right: 12px;*/
    margin-left: 12px;
}


.selected-filters a {
    display: inline-block;
    margin-right: 2px;
    text-decoration: none;
    background-color: #1c4f78;
    color: #fff;
    padding: 0 4px;
    line-height: 14px;
    border-radius: 4px;
}


.csv-wrapper a {
    text-decoration: none;
}

.csv-wrapper i {
    font-size: 16px;
}

.legacy-label {
    background-color: #fbf0a7;
    color: #333;
    padding: 0px 6px 2px 6px;
    border-radius: 6px;
    line-height: 13px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 7px;
}

.invalid-input {
    background-color: #fab49f;
}

.label-compact {
    line-height: 1.2em;
}



.tag-tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tag-tooltip-text {
    visibility: hidden;
    width: 300px;
    max-width: 300px;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the span */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tag-tooltip-container:hover .tag-tooltip-text {
    visibility: visible;
    opacity: 1;
}



.bottom-shadow {
    box-shadow: 0px 10px 17px -8px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 10px 17px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 10px 17px -8px rgba(0,0,0,0.75);
}



.info-container {
    position: relative;
    display: inline-block;
}

.info-icon {
    cursor: pointer;
    font-size: 20px;
    color: #007bff;
}

.tooltip-box {
    position: absolute;
    top: 10px;
    left: 20px;
    background-color: #e5e5e5;

    color: #333;
    border: 1px solid #b2b2b2;
    border-radius: 6px;
    padding: 10px 15px;
    width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 100;
    display: none;
}

.tooltip-box .close-btn {
    position: absolute;
    top: 5px;
    right: 8px;
    cursor: pointer;
    font-weight: bold;
    color: #888;
}

.tooltip-box .close-btn:hover {
    color: #000;
}


.text-content {
    border:1px solid #333;
    background-color: #fff;
    padding: 7px 12px;
    max-height: 170px;
    overflow-y: scroll;
    line-height: 18px;
}