@import './sidebarRight.css';
@import './sidebar.css';
@import './swap.css';

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
    box-shadow: none !important;
}

/* main */
.main {
    width: 100%;
}

.main .menu-dropdown {
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    background: blue !important;
}

.dropdown-menu {
    width: 230px !important;
    z-index: 100000;
}

@media (max-width: 770px) {
    .main {
        width: 100% !important;
    }
}




/* chat bot */
.chat-bot {
    text-align: center;
    position: relative;
}

.chat-window {
    padding: 10px;
    overflow-y: scroll !important;
    max-height: 500px !important;
    scrollbar-width: thin;
    direction: rtl;
}

.chat-bot .chat-window::-webkit-scrollbar {
    width: 5px !important;
    /* عرض نوار اسکرول */
}

.chat-bot .chat-window::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    /* رنگ پس‌زمینه نوار اسکرول */
}

.chat-bot .chat-window::-webkit-scrollbar-thumb {
    background: #f1f1f1 !important;
    /* رنگ نوار اسکرول */
    border-radius: 10px !important;
    /* گرد کردن کنج‌ها */
}

.chat-bot .chat-window::-webkit-scrollbar-thumb:hover {
    background: #f1f1f1;
    /* رنگ نوار اسکرول هنگام hover */
}


.chat-bot .chat-window {
    scrollbar-width: thin;
    /* اندازه نوار اسکرول: thin */
    scrollbar-color: #f1f1f1 #ffffff;
    /* رنگ نوار اسکرول و پس‌زمینه */
}

.chat-bot .chat-window::-webkit-scrollbar-button {
    display: none;
}

.chat-bot .message {
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 8px;

}


.chat-bot .input-area {
    background-color: #f9f9f9 !important;
    padding: 0;
    height: 150px;
    border-top: 1px dashed #7e7d7d;
    resize: none;
}

.chat-bot .star-and-btn{
    border: 1px solid #575757;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chat-bot .star-and-btn .star-group{
    display: flex;
    align-items: center;
   
}
.chat-bot .star-and-btn .star-group .star{
   border: 1px solid #727272;
   padding: 3px;
    margin: 2px 0px 2px 5px;

}

.token {
    direction: ltr;
    color: #000 !important;
    overflow: hidden;
}

.token .token-content {
    text-align: left;
    width: 50% !important;
}

.file-upload {
    position: relative;
    overflow: hidden;
    text-align: center !important;
}

input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.show-more-btn {
    cursor: pointer;
    display: inline-block;
    transition: all 0.5s ease;
}

.show-more-btn:hover {
    cursor: pointer;
    border-bottom: 1px solid;
}

.show-more-details {
    display: none;
}

.show-more-details.show {
    display: block !important;
}

@media (max-width: 992px) {
    .token .token-content {
        width: 70% !important;
    }
}

@media (max-width: 768px) {
    .token .token-content {
        width: 75% !important;
    }
}

@media (max-width: 668px) {
    .token .token-content {
        width: 80% !important;
    }
}

@media (max-width: 578px) {
    .token .token-content {
        width: 90% !important;
    }
}

@media (max-width: 530px) {
    .token .token-content {
        width: 100% !important;
    }
}

@media (max-width: 420px) {
    .token .token-content {
        width: 100% !important;
        padding: 10px !important;
    }
}

/* 
.sidebar-right .nav-link{
    background: red !important;
    position: absolute !important;
    left: -10% !important;
    top: 202% !important;
    transform: rotate(-91deg) !important;
} */