@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.table-dark {
    --bs-table-color: #fff;
    --bs-table-bg: #1a1a1a;}
:root {
    --bs-primary: #55df00;
}

body {
    background-color: #000;
}

.middle-content p{
        margin-bottom: 0px;
    font-size: 30px;
    font-weight: 700;
}
.middle-content{
        display: flex;
    justify-content: space-between;
}

.btn-outline-primary {
    --bs-btn-color: #55df00;
    --bs-btn-border-color: #55df00;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #55df00;
    --bs-btn-hover-border-color: #55df00;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #55df00;
    --bs-btn-active-border-color: #55df00;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #55df00;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #55df00;
    --bs-gradient: none
}

a {
    color: #55df00;
}

.logo {
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
}

.logo span {
    color: #55df00;
}

section {
    border: 1px solid transparent;
    padding-bottom: 10px;
}

.item-hover:hover {
    border: 1px solid #55df00;
    padding-bottom: 10px;
}

.move svg,
.edit_section svg {
    color: transparent;
}

.move,
.edit_section {
    margin-top: -15px;
}

.move {
    padding: 2px;
}

section:hover .edit_section svg {
    background-color: #55df00;
    color: #fff;
    border-radius: 100%;
}

section:hover .move svg {
    background-color: #3f4659;
    color: #fff;
    border-radius: 5px;
    padding: 3px;

}

.setting_section span {
    color: transparent;
}

.setting_section {
    margin-top: -15px;
}

section:hover .setting_section span {
    margin-top: -4px;

}

.setting_section svg {
    margin-top: -5px;
}

section:hover .setting_section span {
    background-color: #55df00;
    color: #fff;
    border-radius: 100%;
    padding: 2px;
}

.delete_section svg {
    color: transparent;
}

.delete_section {
    margin-top: -15px;
}

section:hover .delete_section svg {
    background-color: #55df00;
    color: #fff;
    border-radius: 100%;
    padding: 2px;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in;
}

.edit {
    background-color: #2a2a2a;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.remove {
    background-color: #2a2a2a;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.plus-icon {
    transition: transform 0.2s;
}

.btn:hover .plus-icon {
    transform: rotate(90deg);
}

body {
    background-color: black;
    color: white;
}

.btn-custom {
    background-color: #55df00;
    border: none;
    color: #fff;
    font-weight: 700;
    border: 1px solid #55df00;
    transition: background-color 0.2s;
}

.btn-custom:hover {
    background-color: transparent;
    color: #55df00;
    border-color: #55df00;
}

.modal-content {
    background-color: #1a1a1a;
    color: white;
}

.block-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.block-item {
    background-color: #2a2a2a;
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.block-item:hover {
    background-color: #333;
    border-color: #55df00;
}

.block-item.selected {
    border-color: #55df00;
    background-color: #333;
}

.block-icon {
    width: 100%;
    height: 80px;
    background-color: #545454;
    border-radius: 0.375rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-icon img {
    opacity: 0.7;
    max-width: 80%;
    max-height: 80%;
}

.modal-header {
    border-bottom: 1px solid #333;
}

.modal-title {
    color: white;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.filepond--credits {
    display: none;
}

.filepond--drop-label {
    transform: translate3d(0px, 0px, 0px);
    opacity: 1;
    border: 2px dashed #55df00;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    background-color: #163901;
    cursor: pointer;
    transition: all 0.2s;
    height: 110px;
    color: #fff;
}

.ab-input {
    background-color: #2a2a2a;
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    width: 100%;
}

.ab-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #55df00;
}

.playlist-table {
    width: 100%;
    margin-top: 1rem;
}

.playlist-table th {
    color: #9ca3af;
    font-weight: 500;
    text-align: left;
    padding: 0.75rem;
    border-bottom: 1px solid #333;
}

.video-row,
.playlist-row {
    cursor: pointer;
    transition: background-color 0.2s;
}

.video-row:hover,
.playlist-row:hover {
    background-color: #2a2a2a;
}

.video-row,
.playlist-row td {
    padding: 0.75rem;
    border-bottom: 1px solid #333;
}

.playlist-use-btn,
.use-btn {
    background-color: #55df00;
    color: white;
    border: none;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}

.playlist-use-btn:hover,
.use-btn:hover {
    background-color: #87e14f;
}

.playlist-icon {
    width: 2rem;
    height: 2rem;
    background-color: #333;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.empty-playlist {
    border: 2px dashed #333;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    color: #9ca3af;
    margin: 2rem 0;
}

.back-btn {
    color: #fff;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    cursor: pointer;
}

.back-btn:hover {
    color: #55df00;
}

.add-video-btn {
    width: 100%;
    background-color: #2a2a2a;
    border: 2px dashed #55df00;
    color: #55df00;
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.add-video-btn:hover {
    background-color: #333;
}

.video-modal .modal-content {
    background-color: #1a1a1a;
    border-radius: 1rem;
}

.video-modal .modal-header {
    border-bottom: none;
    padding: 1.5rem;
}

.video-modal .modal-body {
    padding: 0 1.5rem 1.5rem;
}

.drop-zone {
    border: 2px dashed #55df00;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    background-color: rgba(79, 70, 229, 0.1);

    cursor: pointer;
    transition: all 0.2s;
}

.drop-zone:hover {
    background-color: rgba(79, 70, 229, 0.15);
}

.drop-zone.dragover {
    background-color: rgba(79, 70, 229, 0.2);
    border-color: #6366f1;
}

.url-section {

    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.url-section-label {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.video-list {
    margin-top: 1.5rem;
}

.video-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background-color: #2a2a2a;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
}

.video-thumbnail img {
    border-radius: 8px;
    max-width: 200px;
    max-height: 112px;
    aspect-ratio: 16 / 9;
    width: 140px;
    height: 100%;
    object-fit: cover;
    padding: 5px 20px;
}

.video-info {
    flex: 1;
}



.video-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.video-timestamp {
    font-size: 0.875rem;
    color: #9ca3af;
}

.video-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    background-color: #2a2a2a;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.action-btn:hover {
    background-color: #333;
}

.action-btn.add {
    background-color: #55df00;
}

.action-btn.add:hover {
    background-color: #87e14f;
}



.thumbnail {
    width: 12px;
}

.deatils {
    width: 100%;
}



.advanced-options {
    text-align: right;
    margin-top: 0.5rem;
}

.advanced-link {
    color: #55df00;
    text-decoration: none;
    font-size: 0.875rem;
}

.advanced-link:hover {
    text-decoration: underline;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: #fff;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {

    color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: #fff !important;
}

.dataTables_wrapper .dataTables_length select {
    background-color: #fff;
}

.dataTables_wrapper .dataTables_filter input {
    color: #fff;
}

.odd {
    background-color: #2a2a2a !important;
    border-radius: 0.5rem !important;
}

.even {
    background-color: #1f1f1f !important;
    border-radius: 0.5rem !important;
}

#users-table_wrapper {
    background: #000;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

#playlist_div,
#videos-table-div,
#playlist_list_div {
    height: 300px;
    overflow: hidden;
    overflow-y: auto;
}

#playlist_list_div::-webkit-scrollbar,
.playlist_div::-webkit-scrollbar,
#videos-table-div::-webkit-scrollbar,
#videos-table-div::-webkit-scrollbar {
    width: 12px;
}

#playlist_list_div::-webkit-scrollbar-track,
.playlist_div::-webkit-scrollbar-track,
#videos-table-div::-webkit-scrollbar-track,
#videos-table-div::-webkit-scrollbar-track {
    background: #000;
    border-radius: 6px;
}

#playlist_div::-webkit-scrollbar-thumb,
#playlist_list_div::-webkit-scrollbar-thumb,
#videos-table-div::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 6px;
}

#playlist_div:-webkit-scrollbar-thumb:hover,
#playlist_list_div::-webkit-scrollbar-thumb:hover,
#videos-table-div::-webkit-scrollbar-thumb:hover {
    background: #555;
}


#playlist_div,
#playlist_list_div,
#videos-table-div {
    scrollbar-width: thin;
    scrollbar-color: #333 #000;
}

.div-content {
    padding-top: 50px;
    margin-top: -50px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    display: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    display: none;
}

.navigation-div {
    top: 0px;
    position: absolute;
    right: 0px;
    width: 80px;
    height: 10px;
    /* background: #000; */
    height: 30px;
    z-index: 99;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    color: #55df00;
}


.dag {
    cursor: pointer;
    position: relative;
    z-index: 9;
    margin-top: -10px;
}

.playlist_div {
    display: none;
}

.added {
    background-color: #4c8b24 !important;
    padding: 10px 30px !important;
}

.playlist-row .fs-6 {
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
}


.channel_delete,
.playlist_delete {
    background-color: #2a2a2a;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}


.title {
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.2;
}



.img-box {
    padding: 5px;
}

.img-box img {
    object-fit: cover;
}


.uneditable {
    opacity: 0;
    visibility: hidden;
}

.swiper-container {
    overflow: hidden;
}

div:where(.swal2-container) div:where(.swal2-popup) {
    background: #353535 !important;
    color: #fff !important;
}

div:where(.swal2-icon).swal2-success {
    border-color: #55df00 !important;
    color: #55df00 !important;
}


.green {
    background-color: #00bf98;
}

.green-border {
    border-color: #00bf98;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
    background-color: #2a2a2a;
    border: none;
    color: white;
}

.ts-dropdown,
.ts-dropdown.form-control,
.ts-dropdown.form-select {
    background-color: #000;
    color: white;
    border: 1px solid #000;
}

.ts-dropdown .active {
    background-color: #55df00;
}

.ts-control,
.ts-control input,
.ts-dropdown {
    color: #fff;
}

.focus .ts-control {
    border-color: #55df00;
    box-shadow: 0 0 0 .25rem #55df00;
    ;
    outline: 0;
}

.ts-wrapper.multi.has-items .ts-control {
    padding: 10px;
}

.ts-wrapper.multi .ts-control>div {
    background-color: #55df00;
    border-color: #55df00;
    color: #fff;
}

.ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
    border-left: 1px solid transparent;
    margin-left: 5px;
    background: transparent;
}

.choices__list--multiple .choices__item,
.choices__list--multiple .choices__item.is-highlighted {
    background-color: #55df00;
    border: 1px solid #55df00;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background-color: #55df00;

}

.hero-side {
    max-width: 333px;
    max-height: 500px;
    width: 100%;
    height: 100%;
    aspect-ratio: 2 / 3;
}

.banner-side {
    max-width: 80%;
    width: 100%;
    /* 
    aspect-ratio: 16 / 9; */
}


.banner-side img {
    width: 100%;
}

.playlist-side {
    width: 100%;
    height: 100%;
    max-width: 333px;

}


.playlist-side .img-box {
    width: 100%;
    height: 100%;
    max-width: 333px;
    max-height: 187px;
    aspect-ratio: 16 / 9;
}

#thumanildropZone,
#thumanilpreview-container img {
    object-fit: cover;
    border-radius: 0.5rem;
    transition: filter 0.2s;
    max-width: 333px;
    max-height: 500px;
    width: 100%;
    height: 100%;
    aspect-ratio: 2 / 3;

}

#thumnail_bannerdropZone,
#thumnail_banner-container img {
    max-width: 333px;
    max-height: 187px;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
}

.video-iframe {
    max-width: 950px;
    max-height: 534px;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;

}

.img-box {
    overflow: hidden;
    cursor: pointer;
}

.ab-heading-back{margin-left: -20px;}

.img-box-overlay {

    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #45c2b100;
    left: 0px;
    top: 0px;
    opacity: 0;
    visibility: hidden;
    border: 2px solid #45c2b1;
    border-radius: 10px;
}

.img-overlay {
    background: #0b0b0bad;
}

.img-box:hover .img-box-overlay {
    opacity: 1;
    visibility: visible;
}


.img-box-overlay button {
    background-color: #55df00;
    color: #fff;
    border-radius: 100%;
    border: 0px;
    width: 40px;
    height: 40px;
}

.vide-tilte {
    display: -webkit-box;
    -webkit-line-clamp: 1;
        max-width: 400px;
    margin: 0px;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-des {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    font-size: 13px;
    color: #b1b1b1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

div#pagination {
    text-align: center;
    margin-top: 10px;
}

.page-link {
    background: #2a2a2a !important;
    color: #fff !important;
}

.active>.page-link,
.page-link.active {
    background: #fff !important;
    border: 1px solid #fff !important;
    color: #000 !important;
}

.time {
    font-size: 13px;
    color: #b1b1b1;
}

.land {
    border-radius: 8px;
    max-width: 200px;
    max-height: 112px;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 5px;
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 0px 20px;
}

.fixed-btn {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 99;
}

.fixed-btn:hover {
    background-color: #fff;
    color: #000 !important;
}


.upload-container {
    position: relative;
}


#upload-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 0%);
    z-index: 9999;
    display: none;
}


.banner-side img {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.modal-backdrop.show {
    opacity: 0;
    display: none;
}

.red-remove {
    background-color: red !important;
}




.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border-color: #55df00;
    color: #fff;
    background-color: #1a1a1a;
}

.nav-link {
    color: #fff;
}



.nav-link:hover {
    color: #fff;
}

.accordion-body {
    background: #000;
    color: #fff;
    overflow: hidden;
    border-color: #fff;
    
}

.library-item:hover {
    background-color: #282828;
}

.library-item input[type="radio"] {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    transform: scale(1.2);
}

.library-item .icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.library-item h3 {
    margin: 0;
    font-size: 16px;
}

.library-item p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #bbb;
}


.library-item input[type="radio"]:checked+.content {

    background-color: #55df00;
    color: #000;
    border-color: #55df00;
}

.library-item input[type="radio"]:checked+.content p {

    color: #000;

}

.content {
    width: 100%;
    padding: 10px;
}


.box {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    padding-top: 30px !important;
}

.url-span {
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    padding-bottom: 10px;
    color: #c1c0c0;
}

.library-item input[type="radio"]:checked+.content {
    background-color: #55df00;
    color: #000;
    border-color: #55df00;
}

.tab-content>.active {
    border-radius: 0px;
    border-color: #55df00;
    border: 0px solid;
}

.library-item {
    border: 2px solid #55df00;
    border-radius: 10px;

    cursor: pointer;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: #1e1e1e;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.library-item:hover {
    background-color: #282828;
}

/* Hide radio button but keep it functional */
.library-item input[type="radio"] {
    display: none;
}

/* Checked state: Change background to yellow and text to black */
.library-item input[type="radio"]:checked+.content {
    background-color: #55df00;
    color: #fff;
    font-weight: 600;
    border-color: #55df00;
}

.library-item input[type="radio"]:checked+.content p {
    color: #fff;
}

.content {
    width: 100%;
    padding: 10px;
    text-align: left;
}

/* Style for folder icon */
.folder-icon {
    display: inline-block;
    margin-right: 8px;
}

.ab-divider {
    margin-bottom: -20px;
    border-bottom: 1px solid #41bbab87;
}


.back-videp {
    background-color: #1f1f1f;
}

.bg-chart {
    background-color: #1a1a1a;
}


.sidebar-div {
    background: #1a1a1a;
    color: #ffff;
    width: 60px;
    height: 100vh;
    position: fixed;
    top: 0px;
}

.sidebar-item {
    color: #ffff;
    text-decoration: none;
    padding: 15px 5px;
    font-size: 10px;
    line-height: 1.2em;
    display: block;
}

.sidebar-item span {
    display: block;
}
/* 
.headbar-div {
    background: #000;
    color: #ffff;
    border-bottom: 1px solid #202020
} */

.logo img {
    height: 75px;
    width: 100%;
    object-fit: contain;
}

.big_playlist {
    width: 100%;
    background-color: #2a2a2a;
    border: 2px dashed #55df00;
    color: #55df00;
    padding: 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}


.ui-widget.ui-widget-content {
    border: 1px solid #000;
    background: #000;
    color: #fff;
}

.ui-datepicker .ui-datepicker-header {
    background: #151515;
    border: 0px;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    background: #151515;
    color: #fff;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #55df00 !important;
    background: #55df00 !important;
    color: #fff;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #000;
    background: #121212;
    font-weight: normal;
    color: #fff;
}

.full .ts-control {
    background-color: #2a2a2a;

}

.ts-control .item {
    background-color: #55df00;
    border-color: #55df00;
    color: #fff;
    border-radius: calc(var(--bs-border-radius) - 1px);
    cursor: pointer;
    margin: 0 3px 3px 0;
    padding: 1px 5px;
}


.live-bage {
    position: absolute;
    top: 10px;
    right: 10px;
    background: red;
    padding: 4px 9px;
}

.schedule-bage {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2a43f0;
    padding: 4px 9px;
}

.scheduleStartDateBage {
    background: #2a43f0;
    padding: 5px 10px;
}

.one-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

button.scheduleVideoUse {
    background-color: #55df00;
    color: white;
    border: none;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: background-color 0.2s;
}


.bg-gray-black {
    background-color: #1a1a1a;
    color: #fff;
}





.check-container {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.check-container:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked~.checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
    left: 5px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.log-delete-btn, .user-delete-btn {
    background-color: #2a2a2a;
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.log-delete-btn:hover, .user-delete-btn:hover {
    background-color: #333;
}
.dropdown-item{
    color: #fff;
}
.dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color:#55df00;
}

.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color:#55df00;
}


.dropdown-menu.show {
    top:30px;
    display: block;
    background: #1b1b1b;
  
}


.dropdown-item svg{
width: 20px;
}
.dropdown-item {
 
display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    padding-left: 20px;
    cursor: pointer;}



    .divider-line{
        width: 100%;
        height: 1px;
        background-color: #41bbab87;
    }

    .nav-buttons{ width: 50px;}


    #sortcontent{
        position: relative;
    z-index: 2;
    }
    #header{
        position: sticky;
        top:0px;
    z-index: 3;
    transition: background-color 0.3s ease;
    }

    #header.scrolled {
        padding: 15px auto;
        background-color: #000; /* Change this to any color you want */
    }

    .generation_suggest_label {
        display: flex ;
        text-align: end;
        font-size: 13px;
        padding: 2px 10px;
        border-radius: 50px;
        /* padding-right: 10px; */
        background-color: #6343e3;
        position: absolute;
        right: 10px;
        top: -30px;
        cursor: pointer;
        justify-content: center;
        align-items: center;
        gap: 2px;
    }

    #suggestion-model, .suggestion-card, #suggestion-model .card-body {
        background-color: #1a1a1a;
        color: #fff;
    }

    .ab-input:focus {
        background-color: #2a2a2a;
        color: white;
    }

    .suggestion-close-btn {
        background: transparent;
        color: #fff;
        border: none;
    }
    .ab-input::placeholder {
        color: #ccc; /* or any color you like */
        opacity: 1;
    }

    .suggestion-btn-close svg {
        cursor: pointer;
    }


    .suggest-overlay{height: 100dvh;
    width: 100%;
    background: #0000004a;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;}


    /* .generation_suggest_label{
        display: none;
    } */

    .suggest-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .suggestion-card {
        background-color: white;
        border-radius: 16px;
        padding: 24px;
        width: 500px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .suggestion-btn-close {
        color: #555;
    }

    .suggestion-box {

        border-radius: 16px;
        padding: 24px;
        width: 500px;
        background-color: #1a1a1a;
        color: #fff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .icon-text {
        display: flex;
        margin-right: 20px;
        align-items: flex-start;
    }

    .icon-text svg {
        margin-right: 16px;
        flex-shrink: 0;
        margin-top: 4px;
    }

    .suggest-box {
    max-height: 150px;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: 5px;
}

    .actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 16px;
    }



    .actions button {
        color: #000;
        padding: 10px 16px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        cursor: pointer;
        font-weight: 700;
    }

    #suggestion-close-btn {
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 20px;
        color: #555;
        cursor: pointer;
    }
    #suggestion-close-btn:hover{
        color: #fff;
    }


    .suggest-box::-webkit-scrollbar {
        width: 12px;
    }

    .suggest-box::-webkit-scrollbar-track {
        background: #000;
        border-radius: 6px;
    }


    .suggest-box::-webkit-scrollbar-thumb {
        background: #333;
        border-radius: 6px;
    }


    .suggest-box::-webkit-scrollbar-thumb:hover {
        background: #555;
    }



    .suggest-box {
        scrollbar-width: thin;
        scrollbar-color: #333 #000;
    }
    #regenerate-suggestion{
        color: #55df00;
        text-decoration: none;
        font-weight: 500;
        display: flex;
        align-items: center;
        font-size: 14px;
        padding: 0px;
    background: transparent;
    }

    .suggest-box {
    max-height: 150px;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    margin-top: 5px;
}
    #regenerate-suggestion svg {
        width: 14px;
        margin-right: 6px;
    }