/*================================================================================
	Item Name: Vuexy - Vuejs, HTML & Laravel Admin Dashboard Template
	Version: 2.0
	Author: PIXINVENT
	Author URL: http://www.themeforest.net/user/pixinvent
================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */
.ck-editor__editable {
    min-height: 500px; /* Minimum height */
    max-height: 500px; /* Maximum height */
    height: 500px; /* Fixed height */
}
/* //kanban styling */

.kanban-board {
    display: flex;
}

.thumbnail-img {
    max-width: 100%;
    padding: 10px;
}

.thumbnail-img-table {
    width: 200;
    height: 200px;
    ;
}

.banner-img {
    max-width: 50%;
    padding: 10px;
}

.kanban-column {
    flex: 1;
    background-color: #f2f2f2;
    border-radius: 5px;
    box-shadow: 0 0 5px #dcdcdc;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ccc;
}

@media only screen and (max-width: 992px) {
    .kanban-board {
        grid-template-columns: repeat(4, 1fr);
    }
}

.kanban-column-header {
    padding: 5px;
    background-color: #fff;
    border-bottom: 1px solid #dcdcdc;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.kanban-column-body {
    min-height: 100px;
    padding: 5px;
    width: 100%;
    height: 100%;
}

.kanban-card {
    background-color: #ede2e2;
    border-radius: 5px;
    box-shadow: 0 0 5px #dcdcdc;
    padding: 5px;
    margin-bottom: 10px;
    font-size: 11px;
    color: #000000;
}

.route-list {
    margin-top: 20px;
    height: 80vh;
    overflow: auto;
}

.route-list ul {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
}

.route-list ul li {
    /* width: calc(25% - 10px); */
    margin-bottom: 12px;
    z-index: 2;
    position: relative;
    width: 98%;
    height: 50px;
    background-color: #f2f2f2;
}

.search-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #ccc;
}

.clear-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #ccc;
    cursor: pointer;
    display: none;
}

#filter {
    padding-left: 30px;
    padding-right: 30px;
}

#filter:not(:placeholder-shown)+.clear-icon {
    display: block;
}

.shop-lst {
    height: 500px;
    min-width: 100%;
}

.bg-size {
    width: 90%;
    max-width: 1200px;
}

.route-name-title {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
}

.route-list ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.route-list li {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #dcdcdc;
    padding: 5px;
    font-size: 12px;
    cursor: move;
}

.kanban-route-dropzone {
    min-height: 100%;
    background-color: #fff;
    border: 2px dashed #dcdcdc;
    border-radius: 5px;
    margin-bottom: 5px;
    padding: 5px;
    transition: border-color 0.3s ease-in-out;
}

.kanban-route-dropzone:hover {
    border-color: #ccc;
}

.kanban-route-dropzone .placeholder {
    font-style: italic;
    color: #aaa;
    font-size: 9px;
    margin-bottom: 5px;
}

.kanban-board {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(5, auto);
    grid-gap: 0px;
}

.table-pgn {
    display: flex;
    justify-content: center;
}

thead Th {
    position: sticky;
    z-index: 12;
    top: 51px;
    background: white;
}

table {
    background: #ffff;
}

/* chat */

.chat {
    display: flex;
}

.chat-avatar .avatar img {
    border: 2px solid #fff;
}

.chat-body {
    display: block;
    margin: 0px 30px 10px 20px;
    overflow: hidden;
}

.chat-body .chat-content {
    float: left;
    margin: 0 0 10px 1rem;
    color: #6e6b7b;
    background: none;
    background-color: white;
}

.chat-body .chat-content {
    float: left;
    padding: 0.7rem 1rem;
    margin: 0 1rem 5px 0;
    clear: both;
    color: #fff;
    background-image: linear-gradient(80deg, #7367f0, #9e95f5);
    background-repeat: repeat-x;
    border-radius: 0.357rem;
    box-shadow: 0 4px 8px 0 rgb(34 41 47 / 12%);
    max-width: 100%;
}

.chat-body .chat-content p {
    margin: 0;
}

.all-chats {
    height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column-reverse;
}

/* chat sidebar */

.chat-user-list-wrapper {
    position: relative;
    height: calc(100% - 65px);
    width: 360px;
    border-radius: 0;
}

.chat-list-title {
    color: #7367f0;
    margin: 2rem 1.286rem 0.5rem;
}

.chat-user-list-wrapper ul {
    padding-left: 0;
    margin-bottom: 0;
}

.chat-user-list-wrapper li {
    display: flex;
    padding: 0.786rem 1.286rem;
}

.chat-user-list-wrapper li .chat-info {
    margin-top: 0.3rem;
    width: calc(100% - 46px - 46px);
    padding: 0 0.75rem;
}

.side-img {
    max-width: 50%;
}

.shop-details {
    cursor: pointer;
}

.shop-details:hover {
    background-color: #6e6b7b38;
}

.cht-divider {
    text-align: center;
    margin: 1rem 0;
}

.category {
    background-color: #9e95f5;
    padding: 5px 10px;
    color: #fff;
}

.permission-section {
    border: 1px solid #000000;
    padding: 10px;
    height: 400px;
    overflow-y: auto;
}

.datatable-popup-tbl {
    min-height: 200px;
    overflow-y: auto;
}

.permission-title {
    font-weight: bold;
}

.header-wrapper {
    position: relative;
    background-color: #f0f0f0;
    /* Adjust background color as needed */
}

.top-sticky {
    position: relative;
    transition: top 0.3s ease;
}

.top-sticky.sticky {
    position: fixed;
    top: 10px;
    width: 100%;
    z-index: 1000;
    background: white;
}

.share-tbl {
    min-width: 100%;
}