
#loading-indicator {
    position: fixed;
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Center the element itself */
    z-index: 9999; /* Ensure it's on top of other elements */
    box-shadow: 50px 50px 250px 150px white;
    display: none;
}

#paginationControls > div > button.page-btn.btn.active {
    background: #eee;
}

@media only screen and (max-width: 800px) {
    .actionButtons {
        width: 25px !important;
        height: 25px !important;
        margin: 2px;
        padding: 2px !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .table-responsive-l {
        max-width: 90% !important;
    }

    #main-content{
        max-width: 95% !important;
        margin: auto;
    }
}

table {
    max-width: 100%;
    overflow-y: auto;
    width: 100%;
}

td {
    max-width: calc(13vw);
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table td, .table th {
    padding: .35rem !important;
}

thead{
    font-size: max(0.9vw, 12px);
}

tbody{
    font-size: max(0.8vw, 12px);
}

.search-bar {
    background: linear-gradient(45deg, #00000017, transparent);
    padding: 8px;
    border-radius: 10px;
}

#searchInput {
    width: calc(25vw);
    min-width: 80px;
    max-width: 90%;
}


.pagination{
    flex-wrap: wrap;
}

h3{
    padding-top: 20px;
    margin-top: 10px;
    font-size: 1.4rem !important;
}

.chart-container{
    height: 250px;
    width: 100%;
}

.card {
    box-shadow: 0px 15px 30px 5px #80808085;
    margin-top: 15px;
    margin-bottom: 50px;
    padding: 10px;
    background: linear-gradient(45deg, #ecf1f5, transparent, transparent, #f3f3f38f);
}

.card p, .card ul {
    background: #ffffff61;
}

.col-lg-6{
    margin-bottom: 10px;
}

textarea:focus, input[type="text"]:focus, .select2-selection:focus {
    background: linear-gradient(0deg, #0000000a, transparent);
}

select {
    border: 1px solid #c7c7c7;
    border-radius: 20px;
    background: #eee;
    padding: 5px;
    margin: 5px;
    font-size: 0.9rem !important;
    cursor: pointer;
}

.bigger-text{
    font-size: 110% !important;
}

#org-list > li {
    background: #f0f8ff4f;
}

/* dropdown menu */
.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
}

.dropdown {
    position: relative;
    display: inline-block;
    transition: all 0.5s;
}

.dropdown-content {
    display: none;
    position: fixed;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    transition: all 0.3s;
    right: 12%;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {background-color: #ddd;}
.show {display: block;}

#logTable > div > table > tbody > tr {
    cursor: pointer;
}

