.text-block {
    background-color: #f7f7f7;
    padding: 10px;
    margin: 10px
}

.text-block-no-padding {
    background-color: #f7f7f7;
    margin-top: 10px;
    padding: 10px;
}

.content-block {
    width: 95%;
}

.dark-theme-body {
    background-color: #0a3622;
    color: wheat;
}

.margin-top-10 {
    margin-top: 10px
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-right-10 {
    margin-right: 10px;
}

.padding-10 {
    padding: 10px;
}
.padding-bottom-10{
    padding-bottom: 10px;
}

.float-right {
    float: right;
}

.btn-icon-success {
    color: green;
}

.btn-icon-success:hover, .btn-icon-success:active, .btn-icon-warning:hover,
.btn-icon-warning:active, .btn-icon-danger:hover, .btn-icon-danger:active,
.btn-icon-primary:active, .btn-icon-primary:hover {
    color: white;
}

.btn-icon-warning {
    color: #f3d67a;
}

.btn-icon-danger {
    color: #da3c3c;
}

.btn-icon-primary {
    color: #0a53be;
}

.btn-outline-secondary {
    color: grey;
}

img {
    width: 100%;
}

.pre-wrap {
    white-space: pre-wrap;
}

.expand-menu {
    display: contents;
}

.expand-menu > button {
    height: 30px;
    width: 30px;
    border-radius: 4px;
    border: 1px solid rgba(65, 59, 59, 0.1);
    margin-right: 5px;
}

.menu-collapsed {
    display: none;
}

.menu-expanded {
    display: block;
}

.collapsed {
    display: none;
}

.expanded {
    display: block;
}

.width-75 {
    width: 75%;
}

.width-20 {
    width: 20%;
}

.width-95 {
    width: 95%;
}

.test-mode-btn:hover {
    color: white;
    background-color: white;
}


.modal.right-side-modal {
    position: fixed;
    top: 0;
    right: 0;
    margin: 0;
    min-height: 100%;
    width: 40%;
    border-radius: 0;
    overflow-y: auto;
}

.inline-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.div-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.draggable {
    cursor: grab;
}

.draggable.over {
    background-color: #ebf1ee;
}

.prompts .btn-outline-secondary:hover {
    background-color: white;
}

.prompts i.fa-trash:hover {
    cursor: pointer;
}

.delete-version:hover {
    cursor: pointer;
}


.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 4px;

    /* Position */
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the button */
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5px;

    /* Fade-in animation */
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.accordion-custom {
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-item-custom {
    margin-bottom: 20px;
    border-radius: 10px;
}

.accordion-header-custom {
    width: 100%;
    text-align: left;
    background-color: #C9C8C8FF;
    padding: 10px 15px;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.accordion-header-custom:hover {
    background-color: #C9C8C8FF;
}

.accordion-content-custom {
    display: none;
    padding: 15px;
    background-color: #ffffff;
}

.accordion-content-item-custom{
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f9f9f9;
}
.prompts-select input[type='checkbox']{
    height: 30px;
    width: 60px;
}