/* GridView Header Hacks */
.grid-view .table th {
    color: #8898aa;
    background-color: #f6f9fc;
    border-color: #e9ecef;
}

.grid-view .table th {
    background-color: #f6f9fc;
    color: #8898aa;
}

.grid-view .table th a {
    color: #8898aa;
}

.grid-view .table [data-sort]::after {
    content: url("data:image/svg+xml;utf8,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M3 0L6 4H0L3 0ZM3 10L0 6H6L3 10Z' fill='%238898aa'/></svg>");
    margin-left: 0.25rem;
}

/* FullCalendar Hacks */
.fc-header-toolbar {
    display: block;
}

.calendar .fc-toolbar {
    height: 100px;
}

/* https://www.abeautifulsite.net/whipping-file-inputs-into-shape-with-bootstrap-3 */
.btn-file {
    position: relative;
    overflow: hidden;
}
.btn-file input[type="file"] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}
