:root {
    /* boxmerz theme base */
    --bs-worksheet-primary: rgba(99, 102, 241, .12);

    /* background color */
    --bs-bg-worksheet: #f3f6fc;

    /* text color */
    --bs-worksheet-dark-text: #333333;
    --bs-worksheet-primary-text: #6366f1;
}

body {
    background-color: var(--bs-bg-worksheet);
}

.boxmerz-theme .card {
    border-radius: inherit;
    transition: none;
}

.boxmerz-theme .card:hover {
    transform: none;
    box-shadow: none;
}

.list-group-flush .list-group-item-action {
    background-color: var(--bs-bg-worksheet);
    color: var(--bs-worksheet-dark-text);
}

.list-group-flush .list-group-item-action {
    border: 0;
    border-radius: 0.5rem;
    margin-bottom: .125rem;
}

.list-group-flush .list-group-item-action.active {
    background-color: var(--bs-worksheet-primary);
    color: var(--bs-worksheet-primary-text);
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    background-color: var(--bs-worksheet-primary) !important;
    color: var(--bs-worksheet-primary-text);
    text-decoration: none !important;
    z-index: 1 !important;
}