/* Full-page overlay and loader */
#loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Adjust opacity as needed */
    backdrop-filter: blur(5px); /* Adds a blur effect to the background */
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loader spinner */
.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 60px;
    height: 60px;
    animation: spin 0.8s linear infinite;
}

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

.search_btn {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .5rem;
    color: #67748e;
    cursor: pointer;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 0.4;
    padding: 0.5rem 1.5rem;
    text-align: center;
    transition: all .15s ease-in;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;

    box-shadow: 0 4px 7px -1px rgba(0,0,0,.11),0 2px 4px -1px rgba(0,0,0,.07);
}
#timeline-result .table tbody tr:last-child td {
    border-width: 1px 1px;
}
#timeline-result .table td, .table th {
    text-align: center;
    vertical-align: middle;
}
.table thead th {
    background-color: #4e4d4d;
    color: #ffffff;
}
#timeline-result .table> thead tr th:first-child {
    border-top-left-radius: 10px;
}
#timeline-result .table> thead tr th:last-child {
    border-top-right-radius: 10px;
}
#timeline-result .table thead{
    border: 0;
}
#timeline-result .table td.left_align{
    text-align: left;
    white-space: normal;
}
#timeline-result .table tbody .summary_row td{
    background-color: #d9d9d9;
}
.type_icon{
    float: left;
}
.container-fluid .hidden{
    display: none;
}
.cp-spinner {
    width: 48px;
    height: 48px;
    position: relative;
    display: inline-block;
    box-sizing: border-box;
}
.cp-eclipse {
    width: 12px;
    height: 12px;
    margin: 12px;
    display: block;
    margin: 12px auto;
    border-radius: 50%;
    background: #f3d53f;
    box-sizing: border-box;
    animation: cp-eclipse-animate 1s ease-out infinite
}
.cp-eclipse:before {
    border-radius: 50%;
    content: " ";
    width: 48px;
    height: 48px;
    display: inline-block;
    box-sizing: border-box;
    border-top: solid 6px transparent;
    border-right: solid 6px #f3d53f;
    border-bottom: solid 6px transparent;
    border-left: solid 6px transparent;
    position: absolute;
    top: -18px;
    left: -18px
}
.cp-eclipse:after {
    border-radius: 50%;
    content: " ";
    width: 48px;
    height: 48px;
    display: inline-block;
    box-sizing: border-box;
    border-top: solid 6px transparent;
    border-right: solid 6px transparent;
    border-bottom: solid 6px transparent;
    border-left: solid 6px #f3d53f;
    position: absolute;
    top: -18px;
    right: -18px
}
@keyframes cp-eclipse-animate {
    0% {
        transform: rotate(0)
    }
    100% {
        transform: rotate(360deg)
    }
}