[role="button"] {
    cursor: pointer;
}

.google-login {
    display: flex;
    background-color: var(--button-bg);
    border: none;
    color: white !important;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
}

.google-login img {
    margin-right: 16px;
    height: 30px;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.separator:not(:empty)::before {
    margin-right: .25em;
}

.separator:not(:empty)::after {
    margin-left: .25em;
}

#toggle-nav-sidebar {
    border: none;
}

#nav-sidebar {
    padding-top: 20px;
    padding-right: 16px;
}

#nav-sidebar tr {
    background: none;
}

#nav-sidebar .module tr th:not(.field-date) {
    border-radius: 4px 0 0 4px;
    border-bottom: none;
}

#nav-sidebar .module tr td:not(.field-date) {
    border-radius: 0 4px 4px 0;
    border-bottom: none;
}

.module table a:not(.addlink):not(.changelink):not(.wt a) {
    color: #0d0d0d;
}

.toplinks li a {
    color: var(--link-fg);
}

.module caption {
    border-radius: 4px;
    margin-bottom: 8px;
}

#changelist-filter li.selected {
    border-left-color: #ffa33c;
}

#changelist-filter h2 {
    border-radius: 4px;
}

#changelist {
    gap: 16px;
}

#result_list thead tr>*,
#result_list tbody tr:last-child>* {
    border: none;
}

#result_list thead tr th {
    background-color: var(--primary);
}

#result_list thead tr th:first-child {
    border-radius: 4px 0 0 4px;
}

#result_list thead tr th:last-child {
    border-radius: 0 4px 4px 0;
}

#toolbar {
    border: none;
    background-color: var(--breadcrumbs-bg);
}

.dashboard #content-main {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.dashboard #content-main>div {
    position: relative;
    width: 100%;
}

.module ul.actionlist {
    margin-left: 0;
}

ul.actionlist li {
    list-style-type: none;
    overflow: hidden;
    text-overflow: ellipsis;
}

.field-get_question {
    max-width: 300px;
}

.tooltip {
    position: relative;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    min-width: max-content;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 8px;
    position: absolute;
    z-index: 1;
    top: 150%;
    left: 60px;
    margin-left: -60px;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 10%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

@media (min-width: 992px) {
    .dashboard #content-main>div {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
}