/* Common styles for sortable table headers */

.sort-icon {
    font-size: 0.85em;
    opacity: 0.9;
    color: darkgray;
}

/* Timeline specific styles */

/* defines some styles for the region selector just above the timeline */
#timeline-region-selector {
    @media (min-width: 576px) {
        width: 25%;
        min-width: 540px;
    }
}

/* keep the whole background color while maintaining the grid borders visible */
.vis-timeline {
    background-color: #212529;
    border: 1px solid #bfbfbf;
} 

/* create a strip effect by changing the center part of the timeline only */
.vis-time-axis .vis-grid.vis-minor {
    background-color: #2c3034;
}

/* override the style of the labels for time axis */
.vis-time-axis .vis-text {
    color: #ffffff !important;
    font-weight: bold;
}

/* override the style of the labels for the group axis */
.vis-inner {
    color: #ffffff;
    font-weight: bold;
}

/* override the style of all the timeline boxes */
.vis-item.vis-box {
    background-image: radial-gradient(#ffc183 10%, #ff8000);
    border-color: #ff8000 !important;
    color: #444444 !important;
}

