<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body, html, main, .card-body {
    background-color: #fff;
}
.row-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.pos-input {
    max-width: 50px;
    display: inline-block !important;
}
.set-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    img {
        width: 50px;
        border-radius: 5px;
    }
}
.trend-cell {
    .trend-up {
        width: 26px;
        height: 26px;
        border-radius: 3px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background-color: #198754;
        color: #fff !important;
    }
    .trend-down {
        width: 26px;
        height: 26px;
        border-radius: 3px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background-color: #dc3545;
        color: #fff !important;
    }
    .trend-none {
        width: 26px;
        height: 26px;
        border-radius: 3px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background-color: #9da3a9;
        color: #fff !important;
    }
}
.mass-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.set-box {
    flex: 1;
}
.hidden-elem {
    display: none !important;
}
.show-stat {
    text-decoration: none;
    color: #000;
    background-color: #e5e9f3;
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 900;
    transition: 0.3s;
}
.log-item {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.3s;
    padding: 4px;
    .op-type {
        width: 230px;
    }
}
.log-item:hover {
    background-color: whitesmoke;
    cursor: pointer;
}
.in-form {
    margin-bottom: 15px;
    max-width: 400px;
    display: flex;
    align-items: center;
    gap: 14px;
    input {
        flex: 1;
    }
    button {
        width: 100px;
    }
}
</pre></body></html>