* {
    margin: 0px;
    padding: 0px;
}
:root {
    --black-1: #2C2C2C;
    --black-2: #1E1E1E;
    --black-3: #8E8E8E;
    --blue: #0C8CE9;
}

:root {
    --nav-bar-height: 50px;
}
header{
    position:sticky !important;
    top:0px !important;
}
.cursor-pointer {
    cursor: pointer;
}
.modal-header, .modal-content {
    background-color: white !important;
    color: black;
}

.modal {
    backdrop-filter: blur(4px) !important;
}

.modal-header {
    background-color: var(--black-1) !important;
    position: sticky;
    top: 0;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    border: none !important;
}

.modal-title {
    font-size: 17px;
    font-weight: 400;
}

.modal-content {
    display: flex;
    flex-direction: column;
    background-color: var(--black-2) !important;
    border: none !important;
}

.modal-body {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
    max-height: 75vh !important;
}

.modal-footer {
    position: sticky;
    bottom: 0;
    z-index: 10;
    background-color: #2C2C2C;
    border-top: none !important;
}
.form-control, .form-control:focus{
    background-color: transparent;
    border: 1px solid var(--black-3);
    color: white;    
}
.form-label{
    color:white;
}
.form-control::placeholder {
    color: lightgray
}
.h-100vh {
    height: 100vh;
}

.bg-lightgrey {
    background-color: var(--black-1) !important;
}

.text-grey {
    color: #afafaf !important;
}

.menu-container {
    height: 100vh;
    background-color: black !important;
}

.menu-list {   
    padding-bottom: 20px;
    border-top: 1px solid #3c3c3c;
}

.input-group {
    border: 1px solid #303030;
    border-radius: 8px;
    padding: 3px;
}

.search-input {
    border: none !important;
    background-color: transparent !important;
    color: white !important;
}

.left-menu-item {
    text-align: left;
    padding: 6px 12px;
    margin: 10px 12px;
    cursor: pointer;
    text-decoration: none;
    color: white !important;
}

.selected-left-menu {
    background-color: #303030;
    border-radius: 8px;    
}


.left-menu-item:hover {
    background-color: #303030;
    border-radius: 8px;
}

.search-input::placeholder {
    color: lightgray !important;
}

.search-input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.selected-menu {
    background-color: #303030;
    border-radius: 8px;
}

.logout-btn {
    color: white;
    background-color: red !important;
    font-size: 14px;
    font-weight: 500
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #222;
}

::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #888;
    }

.overflow-y-auto {
    overflow-y: auto;
}

.bot-text-area {
    background-color: var(--black-1);
    color: lightblue;
    font-weight: 100;
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    height: fit-content
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*CHATBOT */
.custom-breadcrumb {
    background-color: var(--black-2)
}
.add-chatbot-card {
    border-radius: 20px;
    border: 1px dashed gray;
    height: 100%;
    justify-content: center;
    text-align: center;
    align-content: center;
    cursor: pointer;
}

.chatbot-card {
    background-color: var(--black-2);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid black;
    height: 100%
}

.chatbot-status-indicator {
    background-color: green;
    width: 15px;
    height: 15px;
    border-radius: 20px;
    margin-right: 8px;
}

.chatbot-card-title {
    font-weight: 100;
    font-size: 30px;
}

.chatbot-last-trained {
    font-weight: bold;
    color: gray;
}

.chatbot-card-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    margin-right: 5px;
}

.train-bot-btn {
    background-color: #0C8CE9;
    color: white;
}

.chatbot-edit-btn {
    background-color: var(--black-1);
    color: white;
}

.add-chatbot-card {
    transition: 1s;
}