.row.page {
    display: none;
}

.selectedRow {
    background-color: #f1f1f1;
}

.btn-primary {
    color: #fff !important;
    background-color: #fc4d4d !important;
    border-color: #fc4d4d !important;
}

.text-info {
    color: #999 !important;
    font-weight: bold !important;;
}

.question-block-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns by default */

/* Media query for larger screens */
@media (min-width: 992px) {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on larger screens */
}
padding-bottom: 1.5rem;
}

.question-block-container-description {
    width: 100%;
}
.question-block {
    min-height: 80px;
    margin: 0.2rem !important;
}
.question-block.heading {
    background-color: #999 !important;
    color: white;
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
}

.question-block.heading .card-body.description {
    text-align: center; /* Horizontally center text within the div */
    flex: inherit;
}
.question-block.heading a {
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.question-block.active {
    background-color: #6c757d !important;
    color: white;
}
.question-block.active a {
    font-weight: bold;
}
.question-block.clickable {
    cursor: pointer;
}
.description .full-description {
    display: none; /* Initially hide the full description */
}

.description .show-more,
.description .show-less {
    display: none; /* Initially hide both "Show more" and "Show less" buttons */
    color: #fc3434 !important;
}
.description.expanded .full-description {
    display: block; /* Display the full description when expanded */
}
.description.expanded .show-more {
    display: none; /* Hide "Show more" when expanded */
}
.description.collapsed .short-description {
    display: block; /* Display the short description when collapsed */
}
.description.collapsed .show-less {
    display: none; /* Hide "Show less" when collapsed */
}

.card-header {
    color: #fff !important;
    background-color: #fc4d4d !important;
    border-color: #fc4d4d !important;
    font-weight: bold !important;
    text-shadow: 0px 0px 2px rgb(0 0 0 / 90%);
}
.card-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff; /* Optional: Add a background color for visibility */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for better visibility */
    z-index: 100; /* Optional: Adjust the z-index as needed to layer it above other content */
}

.card-header .left, .card-header .right {
    display: inline-block; /* or inline-flex */
    width: 50%; /* You can adjust the width as needed */
    vertical-align: top; /* Align the divs vertically */
}
.card-header .right {
    text-align: right;
}
.card-header .right div {
    display: inline-block; /* or inline-flex */
}
.card-header .right div.red {
    color: white;
    font-weight: bold;
}
.card-header .right div.green {
    color: green;
    font-weight: bold;
}

.show-traits, .hide-traits {
    cursor: pointer;
    color: #fc3434 !important;
}

.form-check-input:checked {
    background-color: #fc4d4d !important;
    border-color: #fc4d4d !important;
}

a {
    color: #fc3434 !important;
}

/* Style for the container */
.credits {
    background-color: white;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Style for the round black logo */
.credits .logo {
    width: 100px;
    height: 100px;
    background-image: url(/img/tiberius-consulting.png);
    background-size: contain;
    background-color: black;
    border-radius: 50%;
    background-position: center;
}

/* Style for the text */
.credits .text {
    margin-top: 10px;
    font-size: 16px;
}

.container.py-5:last-child {
    padding-bottom: 0px !important;
}