.nav-tabs a {
    color: #616161;
    font-weight: lighter;
    line-height: 1.2em;
}

.nav-tabs .nav-link{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 15px;
    border: 1px solid #e5e7eb;
}


.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover
 {
    background-color: #40584E;
    opacity: 70%;
    color: white;
    padding: 15px;
}

.nav-tabs li {
    margin-left: 0px;
    margin-right: 10px;
}

.playground_wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
}

.playground_wrapper form input[type="number"],
.playground_wrapper form input[type="text"],
.playground_wrapper select {
    width: 100px !important;
    background-color: white;
    color: #616161;
    font-weight: lighter;
    line-height: 1.2em;
    font-family: sans-serif;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}


.left_div {
    margin-top: 70px;
    margin-left: 150px;
    width: calc(100% - 760px);
    min-width: 200px;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
}

.notification-pending {
    margin-top: 10px;
    font-size: 12px;
    color: black;
}

.notification-error {
    margin-top: 10px;
    font-size: 12px;
    color: black;
}

.notification-completed {
    margin-top: 10px;
    font-size: 12px;
    color: #40584E;
}

.right_div {
    margin-top: 70px;
    margin-right: 30px;
    width: 400px;
    position: fixed;
    top: 20px;
    right: 150px;
    bottom: 20px;
    left: auto;
    border-radius: 10px;
}

@media screen and (max-width: 1000px) {
    .playground_wrapper {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .left, .right {
        min-width: 0; /* Reset minimum width */
    }

    .left_div {
        margin-top: 70px;
        margin-left: 20px;
        margin-right: 20px;
        width: calc(100% - 40px);
        order: 1;
    }

    .right_div {
        margin: 20px;
        width: calc(100% - 40px);
        position: static;
        order: 2;
    }
}


#chatbot_role {
    min-width: 150px;
}

#project_name {
    min-width: 150px;
}

.buttons-suggestions-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}