/*
MIT License

Copyright (c) 2015-present Rapptz
*/

/* attribute tables */
.py-attribute-table {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin: 0 2em;
    padding-top: 16px;
}

.py-attribute-table-column {
    flex: 1 1 auto;
}

/* .py-attribute-table-column:not(:first-child) {
    margin-top: 1em;
} */

.py-attribute-table-column > span {
    font-weight: bold;
    color: var(--attribute-table-title);
}

main .py-attribute-table-column > ul {
    list-style: none;
    margin: 4px 0px;
    padding-left: 0;
    font-size: 0.95em;
}

.py-attribute-table-entry {
    margin: 0;
    padding: 2px 0;
    padding-left: 0.2em;
    border-left: 2px solid var(--attribute-table-entry-border);
    display: flex;
    line-height: 1.2em;
}

.py-attribute-table-entry > a {
    padding-left: 0.5em;
    color: var(--attribute-table-entry-text);
    flex-grow: 1;
}

.py-attribute-table-entry > a:hover {
    color: var(--attribute-table-entry-hover-text);
    text-decoration: none;
}

.py-attribute-table-entry:hover {
    background-color: var(--attribute-table-entry-hover-background);
    border-left: 2px solid var(--attribute-table-entry-hover-border);
    text-decoration: none;
}

.py-attribute-table-badge {
    flex-basis: 3em;
    text-align: right;
    font-size: 0.9em;
    color: var(--attribute-table-badge);
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
