@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");

:root {
    /* cpre colors  */
    --font: "Rubik", sans-serif;
    --body-color: #1b1b1b;
    --white-color: #ffffff;
    --black-color: #000;
    --black-50-color: rgba(0, 0, 0, 0.4);
    --primary-color: #283e50;
    --dark-color: rgba(0, 0, 0, 0.08);
    --light-color: #f5f5f5;
    --assest-color: #e9ecef;
    --light-gray: #818181;
    --green-color: #058f00;
    --red-color: #ff000d;

    /* ── New variables ── */
    --border-color: #e5e7eb;
    --text-body: #374151;
    --bg-light: #f9fafb;
    --primary-light: rgba(1, 41, 73, 0.09);
    --text-muted: #6b7280;
    --warning-color: #e7ae03;
    --light-green: rgba(86, 163, 86, 0.195);
    --light-red: rgba(172, 81, 81, 0.195);
    --light-warning: rgba(161, 161, 63, 0.195);
}

html,
body {
    height: 100%;
    overflow: auto;
}
body {
    margin: 0;
    padding: 0;
    font-family: var(--font);
    color: var(--body-color);
    background-color: var(--assest-color);
    font-size: 14px;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
}
.defaultfont {
    font-family: var(--font);
}
a {
    text-decoration: none !important;
}

.breadcrumb {
    margin: 0;
    padding: 0;
}
.breadcrumb a {
    color: var(--primary-color) !important;
}
.primary-color {
    color: var(--primary-color) !important;
}
.primary-bg {
    background-color: var(--primary-color) !important;
}
.text-gray {
    color: var(--body-color);
    opacity: 0.6;
}
.btn:focus {
    outline: none;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}
.btn-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    border-bottom: 1px solid var(--primary-color);
    display: inline-block;
    padding: 0 0 0px;
    border-radius: 0;
    font-size: 14px;
}
.btn-default {
    background: var(--primary-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    border: 1px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 8px 20px;
}
.btn-default:hover {
    color: var(--primary-color);
    background: transparent;
    border-color: var(--primary-color);
}
.mw-120 {
    min-width: 120px;
}
.size-90 {
    height: 90px;
    width: 90px;
}
.size-55 {
    height: 55px;
    width: 55px;
}
.size-40 {
    height: 40px;
    width: 40px;
}
.table-bg {
    background-color: var(--assest-color);
}
.br-10 {
    border-radius: 10px;
}
.f-14 {
    font-size: 14px;
}
.f-18 {
    font-size: 18px;
}
.mt-12 {
    margin-top: 12px;
}
.btn-icon {
    padding: 4px 8px;
    border-radius: 8px;
    background: var(--primary-color);
}
.dropright .dot-icon {
    height: 18px;
}
.dropright .dropdown-menu {
    top: 100% !important;
    right: 0;
    -webkit-transform: none !important;
    transform: none !important;
    left: auto !important;
}
.author-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    flex-shrink: 0;
}
.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}
.dropdown-menu {
    -webkit-box-shadow: 0 15px 35px var(--dark-color);
    box-shadow: 0 15px 35px var(--dark-color);
    padding: 4px;
    border: 0;
    border-radius: 12px;
}
.dropdown-menu .dropdown-item {
    font-weight: 500;
    border-bottom: 1px solid var(--light-color);
    padding: 7px 11px;
    font-size: 14px;
    outline: none;
}
.dropdown-menu .dropdown-item:focus {
    background-color: transparent;
}
.dropdown-menu .dropdown-item:hover {
    background-color: var(--light-color) !important;
}
.dropdown-menu .dropdown-item:last-child {
    border-bottom: 0;
}
.bg-darkblue {
    background: var(--light-color) !important;
}
.bg-primary-color {
    background: var(--primary-color) !important;
}
.cursor {
    background-color: var(--assest-color);
    border: 1px solid var(--black-color);
    cursor: grab;
}
.side-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: transparent;
    padding: 0;
}
.side-toggle span {
    background: var(--primary-color);
    width: 20px;
    height: 2px;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.25s ease;
    display: block;
}
.side-toggle span:nth-child(2) {
    width: 13px;
}
.custom-control .custom-control-label::before {
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
}
.custom-control .custom-control-input:checked ~ .custom-control-label::after {
    border-radius: 3px;
    background-color: var(--primary-color);
}
.custom-control.custom-radio .custom-control-label::before,
.custom-control.custom-radio .custom-control-label:after {
    border-radius: 50% !important;
}
.sidebar {
    background: var(--white-color);
    border-right: 1px solid var(--border-color);
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 280px;
    max-width: 100%;
    overflow: auto;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 100;
}
@media (min-width: 1680px) {
    .sidebar {
        width: 300px;
    }
}
.sidebar.hide-sidebar {
    width: 72px;
}
@media (min-width: 1024px) {
    .sidebar.hide-sidebar .side-menu .side-submenu a.dropdown-item {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        margin: 2px 10px;
        border-left: none;
        border-radius: 10px;
    }
    .sidebar.hide-sidebar .side-menu .partition {
        display: none;
    }
    .sidebar.hide-sidebar .side-head {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 0 4px;
        width: 100%;
        padding: 15px 10px;
    }
    .sidebar.hide-sidebar .side-logo,
    .sidebar.hide-sidebar .partition,
    .sidebar.hide-sidebar .side-menu a > span {
        display: none;
    }
    .sidebar.hide-sidebar .side-menu .active a:after {
        content: none;
    }
    .sidebar.hide-sidebar .side-menu a {
        margin: 3px auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0;
        height: 44px;
        width: 44px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 10px;
        border-left: none;
    }
    .sidebar.hide-sidebar .side-menu > li.active a {
        border-left: none;
    }
    .sidebar.hide-sidebar .side-menu a:hover {
        border-left: none;
    }
    .sidebar.hide-sidebar .side-menu a .menu-icon {
        margin-right: 0;
        font-size: 15px;
    }
    .sidebar.hide-sidebar .side-menu a.dropdown-toggle:after {
        content: none;
    }
    .sidebar.hide-sidebar .side-menu .dropdown-menu {
        margin-left: 0;
        min-width: unset;
        padding: 0;
        border-left: none;
    }
    .sidebar.hide-sidebar .side-menu .dropdown-menu a {
        padding: 0;
        height: 36px;
        width: 44px;
        margin: 2px auto;
    }
    .sidebar.hide-sidebar .side-menu .dropdown-menu a svg {
        margin-right: 0;
    }
    .sidebar.hide-sidebar .side-menu .side-submenu a.dropdown-item {
        margin-left: 15px !important;
    }
}
@media (min-width: 1680px) {
    .sidebar.hide-sidebar .side-head {
        margin: 0 0 4px;
        padding-bottom: 14px;
    }
}
.sidebar .side-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--assest-color);
}
.sidebar .side-logo {
    width: auto;
    max-width: 160px;
}
.sidebar .side-logo h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar .side-menu {
    padding: 10px 0px 24px;
    list-style: none;
    margin: 0;
}
.sidebar .side-menu a {
    color: var(--black-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 12px;
    margin: 2px 0;
    position: relative;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 500;
    transition:
        background 0.18s ease,
        color 0.18s ease;
    text-decoration: none;
    border-left: 3px solid transparent;
}
.sidebar.hide-sidebar .side-menu .side_line.active a:after {
    display: none;
}
.sidebar .side-menu .side_line.active a:after {
    content: none;
}
.sidebar .side-menu a .menu-icon {
    margin-right: 10px;
    width: 18px;
    text-align: center;
    font-size: 14px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.sidebar .side-menu .dropdown-menu a .submenu-icon {
    margin-right: 8px;
    width: 16px;
    text-align: center;
    font-size: 12px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.sidebar .side-menu a svg {
    width: 18px;
    margin-right: 10px;
    color: var(--black-color);
}
.sidebar .side-menu a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}
.sidebar .side-menu .active > a {
    background: var(--primary-light);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
    font-weight: 600;
}

.sidebar .side-menu .active > a .menu-icon {
    color: var(--primary-color);
    -webkit-filter: none;
    filter: none;
}
.sidebar .side-menu .active .dropdown-menu .active .submenu-icon {
    -webkit-filter: none;
    filter: none;
}
.sidebar .side-menu .dropdown-toggle::after {
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: transform 0.2s ease;
    margin-top: 1px;
}
.sidebar .side-menu .dropdown-menu {
    position: relative !important;
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    float: none;
    background: transparent;
    margin-left: 20px;
    padding: 0;
    border: none;
    border-radius: 0;
}
.sidebar .side-menu .dropdown-menu .dropdown-item {
    font-size: 13px;
    font-weight: 400;
    padding: 7px 10px;
    background: transparent !important;
    color: var(--black-color);
    margin: 1px 0;
    transition:
        background 0.18s ease,
        color 0.18s ease;
}
.sidebar .side-menu .dropdown-menu .dropdown-item:hover {
    background: var(--primary-light) !important;
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}
.right-content {
    margin-left: 280px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    min-height: 100vh;
}
.sidebar .side-menu .side-submenu a {
    color: var(--black-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 10px;
    margin: 1px 0;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    transition:
        background 0.18s ease,
        color 0.18s ease;
    position: relative;
}
.sidebar .side-menu .side-submenu .active {
    background: transparent;
    border-radius: 0;
    color: inherit;
    padding: 1px 0;
}
.sidebar .side-menu .side-submenu .active .dropdown-item {
    color: var(--primary-color);
    font-weight: 600;
    background: var(--primary-light) !important;
}
.sidebar .side-menu .side-submenu .active .submenu-icon {
    color: var(--primary-color);
    -webkit-filter: none;
    filter: none;
}
.sidebar .side-menu .side-submenu a:hover {
    color: var(--primary-color);
}
.sidebar .side-menu .side-submenu .active a {
    color: var(--primary-color);
}
@media (min-width: 1680px) {
    .right-content {
        margin-left: 300px;
    }
}
.right-content.right-content-0 {
    margin-left: 72px;
}
.right-content.right-content-0 .header .title-control .side-toggle {
    display: none;
}
.header {
    position: sticky;
    -webkit-position: -webkit-sticky;
    top: 0;
    background: var(--white-color);
    z-index: 22;
    padding: 14px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid var(--light-color);
    box-shadow: 0 2px 12px var(--dark-color);
}
@media (min-width: 1680px) {
    .header {
        padding: 18px 32px;
    }
}
.header .title-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.header .title-control .side-toggle {
    margin-right: 15px;
    display: none;
}
.header .page-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: var(--body-color);
    letter-spacing: -0.2px;
}
.header .input-group {
    border: 1px solid var(--black-color);
    border-radius: 100px;
    width: 550px;
    max-width: 100%;
}
.header .input-group .input-group-text,
.header .input-group .form-control {
    background: transparent;
    border: 0;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}
.header .input-group .input-group-text img,
.header .input-group .form-control img {
    width: 20px;
    margin: 0 5px;
}
.header .input-group .form-control {
    font-size: 14px;
    padding: 12px 6px;
}
.header .side-logo {
    display: none;
}
.header .head-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
.header .head-control .head-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 38px;
    width: 38px;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--assest-color);
    border: 1px solid var(--assest-color);
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
}
.header .head-control .head-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.header .head-control .head-btn:hover i {
    color: var(--white-color) !important;
}
.avatar-img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.body-content {
    padding: 25px;
}
.box-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--assest-color);
    padding-bottom: 10px;
    margin-top: 0px;
}
.box-title .title {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: var(--body-color);
}
.avatar-control {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.avatar-control .avatar-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent;
}
.table-striped tbody tr:nth-of-type(even) {
    background-color: var(--light-color);
}
.table {
    border-color: var(--light-color);
    color: var(--body-color);
    min-width: 650px;
}
.table thead th {
    font-size: 14px;
    font-weight: 600;
    border-top: 0;
    border-bottom: 1px solid var(--light-color);
}
.table td {
    font-size: 14px;
    border-bottom: 1px solid var(--light-color);
    border-top: 0;
    vertical-align: middle;
}
.table .avatar-img {
    margin-right: 10px;
}
.table .clamp-text {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.table .btn {
    padding: 2px;
    background: transparent;
    margin: 0 3px;
}
.table .btn img {
    width: 16px;
}
.dot {
    height: 8px;
    width: 8px;
    background: var(--red-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}
.chart-summary {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.chart-summary li {
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--black-50-color);
}
.chart-summary li:last-child {
    border-bottom: 0;
}
.chart-summary li p {
    margin: 0;
}
.chart-summary li .percentage {
    opacity: 0.7;
}
.summary-table-card .border-card {
    padding: 10px;
    border: 1px solid var(--light-color);
    border-radius: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}
.summary-table-card .border-card > .row {
    margin: 0;
}
.summary-table-card .border-card > .row .col,
.summary-table-card .border-card > .row .col-1,
.summary-table-card .border-card > .row .col-2,
.summary-table-card .border-card > .row .col-3,
.summary-table-card .border-card > .row .col-12 {
    padding: 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.summary-table-card .avatar-control {
    min-width: 120px;
    font-weight: 600;
}
.summary-table-card .avatar-control img {
    margin-right: 8px;
}
.summary-table-card .price {
    color: var(--red-color);
    font-weight: 600;
}
.artist-row {
    margin: 0 -8px;
}
.artist-row .col-6 {
    padding: 0 16px;
}
.artist-grid-card {
    padding: 20px 12px 16px;
    background: var(--bg-light);
    border: 1px solid var(--assest-color);
    border-radius: 16px;
    margin: 16px 0 0;
    text-align: center;
    box-shadow: 0 2px 12px var(--dark-color);
    transition:
        box-shadow 0.25s ease,
        border 0.25s ease,
        transform 0.25s ease;
}
.artist-grid-card:hover {
    border: 1px solid var(--primary-color);
    box-shadow: 0 8px 28px var(--dark-color);
    transform: translateY(-3px);
}
.artist-grid-card .name {
    font-size: 14px;
    font-weight: 700;
    margin: 12px 0 4px;
    color: var(--body-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.artist-grid-card .post {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 8px;
}
.artist-grid-card .details {
    font-size: 12px;
    font-weight: 400;
    color: var(--light-gray);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.artist-grid-card .detanils {
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-box {
    padding: 25px;
    background: var(--assest-color);
}
.video-box .f600 {
    font-weight: 600;
}
.video-box .box-border-0 {
    border: 0;
    padding-bottom: 0;
}
.suggested-video {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--black-50-color);
}
.suggested-video .poster-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}
.suggested-video .video-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.suggested-video .details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.suggested-video .details span {
    padding-right: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.page-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--white-color);
    border-radius: 8px;
    padding: 7px;
}
.page-search .input-group-text,
.page-search .form-control {
    border: 0;
    background: transparent;
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    font-size: 14px;
}
.page-search .input-group-text img,
.page-search .form-control img {
    width: 20px;
}
.page-search .sorting {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 290px;
    background: var(--white-color);
    padding: 2px 12px;
    border-radius: 8px;
}
.page-search .sorting label {
    min-width: 60px;
    margin: 0;
    font-weight: 600;
}
.add-video-btn {
    height: calc(100% - 30px);
    background: var(--white-color);
    border: 1px solid var(--light-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 15px 0;
    width: 100%;
    border-radius: 15px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    padding: 25px;
    color: var(--body-color) !important;
}
.add-video-btn .icon {
    margin-bottom: 15px;
}
.video-card {
    padding: 5px;
    border: 1px solid var(--light-color);
    border-radius: 15px;
    margin: 15px 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.video-card:hover {
    -webkit-box-shadow: 0 15px 35px var(--dark-color);
    box-shadow: 0 15px 35px var(--dark-color);
}
.video-card:hover .play-btn,
.video-card:hover .overlap-control,
.video-card:hover .play-btn-top {
    display: block;
}
.video-card .card-img-top {
    border-radius: 15px;
    height: 160px;
    -o-object-fit: cover;
    object-fit: cover;
}
.video-card .play-btn {
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: none;
}
.video-card .card-body {
    padding: 15px 10px;
    position: relative;
}
.video-card .card-body .dropdown {
    position: absolute;
    right: 10px;
    top: 10px;
}
.video-card .card-body .dropdown .dropdown-menu {
    top: auto !important;
    bottom: 100%;
}
.video-card .card-body .dropdown .head-btn {
    padding: 5px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.video-card .card-body .dropdown .dropdown-item {
    font-weight: 500;
}
.video-card .card-body .dropdown .dropdown-item img {
    height: 18px;
    width: 18px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 10px;
}
.video-card .card-body .card-title {
    padding-right: 10px;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video-card .card-body .card-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.video-card .card-body .card-details p {
    margin: 0;
    font-weight: 500;
    color: var(--body-color);
}
.video-card .card-body .card-details p.tag {
    color: var(--body-color);
}
.video-card .play-btn-top {
    position: absolute;
    right: 00px;
    top: 00px;
    background: transparent;
    padding: 0;
    display: none;
}
.video-card .play-btn-top img {
    width: 45px;
}
.video-card .overlap-control {
    position: absolute;
    right: 10px;
    bottom: -5px;
    display: none;
}
.video-card .overlap-control .btn {
    background: var(--white-color);
    padding: 2px 6px;
    border-radius: 10px;
}
.video-card .overlap-control .btn .dot-icon {
    height: 16px;
    width: 16px;
    -o-object-fit: contain;
    object-fit: contain;
}
.pagination {
    padding: 5px;
    border: 1px solid var(--light-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 10px;
    margin: 35px auto 0;
}
.pagination .page-link {
    border: 0;
    height: 30px;
    width: 30px;
    background: var(--assest-color) !important;
    margin: 0 5px;
    border-radius: 50px !important;
    color: var(--body-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.pagination .page-link .right-arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.pagination .page-link .dots {
    font-weight: 600;
    margin-top: -4px;
}
.pagination .arrow-icon {
    height: 20px;
    width: 20px;
    background-image: url("../../assets/imgs/left-arrow.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 7px;
}
.pagination .arrow-icon .next-arrow {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.pagination .active .page-link {
    background: var(--primary-color) !important;
}
.modal .close {
    font-size: 34px;
    color: var(--white-color);
    opacity: 1;
    position: absolute;
    right: 5px;
    top: 0px;
    font-weight: 200;
    z-index: 22;
    outline: none;
}
.inline-tabs {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    z-index: 2;
}
.inline-tabs li.nav-item {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}
.inline-tabs .nav-link {
    padding: 10px 35px;
}
.app-right-btn {
    text-align: right;
    margin-top: -60px;
    margin-bottom: 30px;
}
.custom-border-card {
    -webkit-box-shadow: 0 1px 4px var(--dark-color);
    box-shadow: 0 1px 4px var(--dark-color);
    border: 1px solid var(--light-color);
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}
.custom-border-card .card-header {
    font-size: 18px;
    background: transparent;
    padding: 0;
    font-weight: 700;
    border-bottom: 2px solid var(--assest-color);
    padding-bottom: 15px;
}
.custom-border-card .badge-header {
    font-size: 18px;
    background: transparent;
    padding: 0;
    font-weight: 700;
    padding-bottom: 15px;
}
.custom-border-card .card-body {
    padding: 18px 0 10px;
}
.form-group label {
    font-weight: 500;
    color: var(--body-color);
    font-size: 14px;
    margin-bottom: 10px;
}
.form-control,
.custom-select {
    border: 1px solid var(--light-color);
    background: var(--light-color);
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 14px;
    height: auto !important;
}
.form-control:focus,
.custom-select:focus {
    -webkit-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
    border-color: var(--primary-color);
}
.file-control {
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 15px;
    cursor: pointer;
}
.file-control span {
    opacity: 0.6;
    display: inline-block;
    margin-top: 10px;
}
.thumbnail-img {
    position: relative;
    border: 1px solid var(--light-color);
    display: inline-block;
    height: 100px;
    width: 130px;
    border-radius: 10px;
    padding: 4px;
}
.thumbnail-img img {
    border-radius: 8px;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.thumbnail-img .close {
    position: absolute;
    top: 5px;
    right: 8px;
    color: var(--white-color);
    opacity: 1;
    font-weight: 300;
}
.radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}
.radio-group .custom-control {
    padding-left: 0;
    margin-right: 15px;
}
.radio-group .custom-control-label {
    margin-bottom: 0;
    background: var(--primary-light);
    padding: 6px 23px 6px 33px;
    border-radius: 100px;
    font-size: 16px;
}
.radio-group .custom-control-label::before,
.radio-group .custom-control-label:after {
    border-radius: 50%;
    top: 10px;
    left: 10px;
}
.radio-group .custom-control-label:after {
    display: none;
}
.radio-group .custom-control-label::before {
    background: transparent;
    border: 3px solid var(--light-gray);
}
.radio-group .custom-control-input:checked ~ .custom-control-label {
    background: var(--primary-color);
    color: var(--white-color);
}
.radio-group .custom-control-input:checked ~ .custom-control-label::before {
    background: var(--primary-color);
    border-color: var(--white-color);
}
.page-title-sm {
    display: none;
}
.border-bottom {
    border-color: var(--light-color) !important;
}
table.dataTable > thead .sorting:before,
table.dataTable > thead .sorting_asc:before,
table.dataTable > thead .sorting_desc:before,
table.dataTable > thead .sorting_asc_disabled:before,
table.dataTable > thead .sorting_desc_disabled:before {
    content: "↑";
}
table.dataTable > thead .sorting:after,
table.dataTable > thead .sorting_asc:after,
table.dataTable > thead .sorting_desc:after,
table.dataTable > thead .sorting_asc_disabled:after,
table.dataTable > thead .sorting_desc_disabled:after {
    content: "↓";
}
div.dataTables_wrapper div.dataTables_length label,
div.dataTables_wrapper div.dataTables_filter label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--assest-color);
    border-radius: 8px;
    padding: 6px 18px;
    font-weight: 600;
}
div.dataTables_wrapper div.dataTables_length label .form-control,
div.dataTables_wrapper div.dataTables_filter label .form-control {
    padding: 6px 12px;
    text-align: center;
    margin: 0 13px;
}
div.dataTables_wrapper div.dataTables_length label input.form-control,
div.dataTables_wrapper div.dataTables_filter label input.form-control {
    margin-right: 0;
    text-align: left;
}
div.table-responsive
    > div.dataTables_wrapper
    > div.row
    > div[class^="col-"]:first-child,
div.table-responsive
    > div.dataTables_wrapper
    > div.row
    > div[class^="col-"]:last-child {
    overflow: auto;
}
.left-caption {
    height: 100%;
    position: relative;
}
.left-caption .bg-img {
    background-size: cover;
    background-position: center center;
    height: 100vh;
    width: 100%;
}
.left-caption .image-view {
    height: 600px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.left-caption .caption {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--black-50-color);
    color: var(--white-color);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 160px;
}
.left-caption .caption .text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 24px;
}
.login-bg {
    background: var(--assest-color);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: auto;
    padding-bottom: 20px;
}
.install-bg {
    background: var(--white-color);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: auto;
}
@media (max-height: 600px) {
    .login-bg {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }
}
.app-logo img {
    width: 180px;
    margin: 15px 0 20px;
}
.app-login-box {
    max-width: 410px;
    margin: 0 auto;
    width: 90%;
    padding: 30px;
    background: var(--white-color);
    border-radius: 20px;
    border: 3px solid var(--primary-color);
}
.app-login-box .form-control {
    background: var(--assest-color);
}
.app-login-box .form-control:focus {
    background: var(--white-color);
}
@media (min-width: 1600px) {
    .table thead th,
    .table td {
        font-size: 16px;
    }
    .custom-tabs .nav-link,
    .summary-table-card .border-card {
        font-size: 16px;
    }
    .artist-grid-card {
        padding: 25px;
    }
    .artist-grid-card .name {
        font-size: 20px;
    }
    .artist-grid-card .post {
        font-size: 16px;
    }
    .artist-grid-card .details {
        font-size: 16px;
    }
    .suggested-video .poster-img {
        width: 160px;
        height: 100px;
        border-radius: 20px;
    }
    .suggested-video .video-title {
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 10px;
    }
    .suggested-video .details {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
    .video-card .card-img-top {
        height: 250px;
    }
    .video-card .card-body .card-title {
        font-size: 18px;
    }
    .video-card .card-body .card-details p {
        font-size: 16px;
    }
    .video-card .play-btn-top img {
        width: 60px;
    }
    .form-group label {
        font-size: 16px;
    }
    .custom-border-card .card-header {
        font-size: 20px;
    }
    .custom-border-card .badge-header {
        font-size: 20px;
    }
}
@media (max-width: 1280px) {
    .header .input-group {
        width: 280px;
    }
}
@media (max-width: 991px) {
    .sidebar {
        left: -280px;
    }
    .sidebar.hide-sidebar {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        left: 0;
        z-index: 99;
        width: 280px;
    }
    .sidebar.hide-sidebar .side-toggle span:first-child {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .sidebar.hide-sidebar .side-toggle span:nth-child(2) {
        display: none;
    }
    .sidebar.hide-sidebar .side-toggle span:last-child {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        margin-top: -5px;
    }
    .right-content {
        margin-left: 0 !important;
    }
    .right-content .page-title {
        display: none;
    }
    .header {
        padding: 15px;
    }
    .header .title-control .side-toggle {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .header .side-logo {
        display: block;
        width: 160px;
    }
    .header .mobile-close-search {
        display: none;
    }
    .counter-row .col-md {
        padding-right: 5px;
        padding-left: 5px;
    }
    .page-title-sm {
        font-size: 26px;
        font-weight: 600;
        margin: -10px 0 20px;
        display: block;
        border-bottom: 1px solid var(--light-color);
        padding-bottom: 5px;
    }
    .app-logo img {
        margin: 20px 0 10px;
    }
}
@media (max-width: 767px) {
    .btn-default {
        font-size: 14px;
    }
    .header .input-group {
        height: 45px;
        width: 45px;
        border-radius: 5px;
    }
    .header .input-group .input-group-text {
        padding: 7px;
    }
    .header .input-group .form-control {
        display: none;
    }
    .box-title {
        padding-bottom: 8px;
    }
    .box-title .title {
        font-size: 18px;
    }
    .avatar-control .avatar-img {
        height: 30px;
        width: 30px;
    }
    .table th,
    .table td {
        padding: 8px 5px;
    }
    .summary-table-card .border-card {
        padding: 10px 2px;
    }
    .summary-table-card .border-card .row .col {
        text-align: left;
    }
    .summary-table-card .border-card .row .col-12 {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .summary-table-card .avatar-control {
        margin: 0 14px 10px;
    }
    .pagination {
        margin-top: 20px;
    }
    .inline-tabs {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow: auto;
        margin-top: 0;
    }
    .inline-tabs::-webkit-scrollbar {
        display: none;
    }
    .inline-tabs .nav-link {
        padding: 8px 14px;
    }
    .app-right-btn {
        margin: 0 0 15px;
    }
    .form-group label {
        font-size: 14px;
    }
    .custom-border-card {
        padding: 16px 20px;
    }
    .custom-border-card .card-header {
        font-size: 18px;
        padding-bottom: 12px;
    }
    .custom-border-card .badge-header {
        font-size: 18px;
        padding-bottom: 12px;
    }
    .file-control {
        padding: 16px;
    }
}
@media (max-width: 567px) {
    .artist-grid-card .name {
        font-size: 16px;
    }
    .artist-grid-card .post {
        margin: 0 0 10px;
    }
    .page-search {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 15px;
    }
    .page-search .sorting {
        margin-top: 8px;
    }
    div.dataTables_wrapper div.dataTables_length label,
    div.dataTables_wrapper div.dataTables_filter label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    div.table-responsive
        > div.dataTables_wrapper
        > div.row
        > div[class^="col-"]:first-child,
    div.table-responsive
        > div.dataTables_wrapper
        > div.row
        > div[class^="col-"]:last-child {
        padding: 0;
        overflow: auto;
    }
    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin-top: 15px;
    }
}
@media (max-width: 340px) {
    .header .side-logo {
        width: 120px;
    }
}
/* Loader */
#dvloader {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: var(--white-color);
    z-index: 9999;
    text-align: center;
}
#dvloader image {
    position: absolute;
    top: 100px;
    left: 240px;
    z-index: 100;
}
/* btn Cancel */
.btn-cancel {
    background: var(--black-color);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    border: 1px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 8px 20px;
}
.btn-cancel:hover {
    color: var(--black-color);
    background: transparent;
    border-color: var(--black-color);
}
/* btn Install */
.btn-install {
    background: var(--primary-color);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    border: 1px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 10px 40px;
}
.btn-install:hover {
    color: var(--primary-color);
    background: transparent;
    border-color: var(--primary-color);
}
/* btn Install Cancel */
.btn-install-cancel {
    background: var(--black-color);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
    border: 1px solid transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 10px 40px;
}
.btn-install-cancel:hover {
    color: var(--black-color);
    background: transparent;
    border-color: var(--black-color);
}
/* Edit-Delete btn */
.edit-delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1.5px solid var(--light-color);
    background: var(--assest-color);
    color: var(--primary-color) !important;
    font-size: 13px;
    transition: all 0.18s ease;
    cursor: pointer;
    text-decoration: none !important;
    outline: none !important;
    vertical-align: middle;
}
.edit-delete-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color) !important;
}
.light-gray {
    color: var(--light-gray);
}
.cart-bg {
    background-color: var(--assest-color);
}
.earning-cart-bg {
    background-color: var(--assest-color);
}
/* Import File */
.import-file {
    background-color: var(--primary-light);
    color: var(--black-color);
}
.import-file::file-selector-button {
    border-radius: 4px;
    background-color: var(--light-gray);
    border: 1px solid var(--light-gray);
    height: 30px;
    cursor: pointer;
}
/* Dashboard Category */
.category-box {
    padding: 25px;
    background: var(--assest-color);
}
.author-name {
    font-size: 18px;
}
.category-box .f600 {
    font-weight: 600;
}
.category-box .box-border-0 {
    border: 0;
    padding-bottom: 0;
}
.centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    width: 100%;
    color: var(--white-color);
}
.category-image {
    max-height: 105px;
    height: 105px;
    width: 100%;
    border-radius: 8px;
    filter: blur(1.2px);
    -webkit-filter: blur(1.2px);
}
/* Dashboard Hashtag */
.hashtag-card {
    padding-top: 10px;
    padding-bottom: 10px;
    border-left: 5px solid var(--primary-color);
    border-radius: 0px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--white-color);
}
.hashtag-card > .row {
    margin: 0;
}
.hashtag-card > .row .col,
.hashtag-card > .row .col-2 .hashtag-card > .row .col-10 {
    padding: 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: start;
}
/* Dashboard Artist */
.artist-name {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.artist-image {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
    padding: 2px;
}
/* Author avatar in artist-grid-card */
.author-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    background: var(--light-color);
    flex-shrink: 0;
}
.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
/* Side Menu Partition */
.partition {
    width: 100%;
    border-bottom: none;
    line-height: 1;
    margin: 20px 0 4px;
    padding: 0 12px;
}
.partition span {
    background: transparent;
    display: block;
    margin: 0;
    padding: 0 0 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--light-gray);
}
/* Demo Mode Box */
.demo-mode-box {
    background: var(--primary-color);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white-color);
    border: 1px solid transparent;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    padding: 0px 14px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.demo-mode-box:hover {
    color: var(--primary-color);
    background: transparent;
    border-color: var(--primary-color);
}
/* Color Picker */
.colorpicker-component {
    display: flex;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    overflow: hidden;
}
.colorpicker {
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    margin: 0;
}
.hexcolor {
    border: none;
    padding: 10px;
    width: 100px;
    outline: none;
}
/* Installation */
.list-group-item {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    background-color: transparent;
}
.form-control {
    background-color: var(--white-color);
    color: var(--title-color);
}
.install-bg-img {
    text-align: center;
}
.install-bg-img img {
    max-width: 100%;
    height: auto;
}
.install-title {
    font-size: 50px;
    font-weight: bold;
}
.install_sub_title {
    font-size: 24px;
}
.install_text {
    font-size: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.install-list li {
    font-size: 20px;
    margin-bottom: 10px;
}
.install-list li:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}
.install-card {
    margin-left: 100px;
    margin-right: 100px;
}
@media (max-width: 1024px) {
    .install-bg-img {
        display: none !important;
    }
}
.install-footer {
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--black-color);
    background-color: var(--primary-color);
}
.install-footer a {
    color: var(--white-color);
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
}
.install-footer a:hover {
    color: var(--black-color);
}
.install-social-icons {
    margin-top: 10px;
}
.install-social-icons a {
    color: var(--white-color);
    font-size: 20px;
    text-decoration: none;
}
.install-social-icons a:hover {
    color: var(--black-color);
}
.install-footer .content {
    position: relative;
    z-index: 1;
}
/* Hide-Show Btn */
.show-btn,
.hide-btn,
.upcoming-btn,
.primary-btn {
    font-weight: bold;
    border: none;
    padding: 5px 15px;
    outline: none;
    border-radius: 50px;
    cursor: pointer;
    box-sizing: border-box;
    font-size: 14px !important;
}

.show-btn {
    background-color: var(--light-green);
    color: var(--green-color);
}

.primary-btn {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.hide-btn {
    background-color: var(--light-red);
    color: var(--red-color);
}

.upcoming-btn {
    background-color: var(--light-warning);
    color: var(--warning-color);
}

.show-btn:focus,
.hide-btn:focus,
.upcoming-btn:focus,
.primary-btn:focus {
    outline: none;
    box-shadow: none;
}
/* Vendor status cell (badge + action buttons) */
.vendor-status-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    margin: 0 auto;
}
.vendor-status-cell .type-badge {
    margin: 0;
}
.vendor-status-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
}
.vendor-status-actions .show-btn,
.vendor-status-actions .hide-btn {
    flex: 0 0 auto;
    min-width: 92px;
    padding: 5px 12px;
    white-space: nowrap;
}
/* Subject Color */
.subject-bg-btn {
    font-weight: bold;
    border: none;
    color: var(--white-color);
    padding: 5px 15px;
    outline: none;
    border-radius: 5px;
}
/* Small-Card */
.card-custom {
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    background-color: var(--assest-color);
}
.card-custom .card-body h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: bold;
}
.card-custom .card-body span {
    font-size: 1.2rem;
    color: var(--black-color);
    font-weight: bold;
}
.card-custom .card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
.small-card-icon {
    padding: 15px;
    border-radius: 50%;
    color: var(--white-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
/* Earning-Card */
.card-earning {
    background-color: var(--white-color);
    border-radius: 10px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    width: 100%;
}
.card-align {
    display: flex;
    justify-content: space-between;
    min-height: 30px;
}
.earning-title {
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}
.earning-amount {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    color: var(--primary-color);
}
.earning-divider {
    width: 2px;
    height: 60px;
    background-color: var(--light-gray);
    margin: 0 15px;
}
/* Custom-Card */
.custom-card {
    background-color: var(--assest-color);
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}
.custom-card .card-body h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: bold;
}
.custom-card .card-body span {
    font-size: 1.2rem;
    color: var(--body-color);
    font-weight: bold;
}
.custom-card .card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
.card-icon-primary {
    padding: 15px;
    border-radius: 50%;
    color: var(--white-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.card-icon-primary {
    background-color: var(--primary-color);
}
.card-color-primary:hover {
    border-color: var(--primary-color);
}
.card-color-primary .card-body {
    color: var(--primary-color);
}
/* Video Ribbon */
.ribbon {
    width: 125px;
    height: 111px;
    overflow: hidden;
    position: absolute;
}
.ribbon span {
    position: absolute;
    display: block;
    width: 200px;
    padding: 5px 0;
    background-color: var(--primary-color);
    box-shadow: 0 5px 10px var(--rebbin-color);
    color: var(--white-color);
    font:
        700 18px/1 "Lato",
        sans-serif;
    text-shadow: 0 1px 1px var(--rebbin-text);
    text-transform: uppercase;
    text-align: center;
}
.ribbon-top-left {
    top: -4px;
    left: -4px;
}
.ribbon-top-left::before {
    top: 0;
    right: 0;
}
.ribbon-top-left::after {
    bottom: 0;
    left: 0;
}
.ribbon-top-left span {
    right: -25px;
    top: 30px;
    transform: rotate(-45deg);
}

/* checkbox  */
.email-checkbox,
.notification-checkbox {
    height: 20px;
    width: 20px;
    accent-color: var(--primary-color);
}
/* # sourceMappingURL=style.css.map */

/* new toggle status button  */
.switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    user-select: none;
}

.switch label {
    position: relative;
    width: 50px;
    height: 25px;
    border-radius: 50px;
    background: var(--red-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px var(--black-50-color);
    margin: 0;
}

.switch label:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: var(--white-color);
    box-shadow: 0 1px 3px var(--dark-color);
    transition: all 0.3s ease;
}

.switch input[type="checkbox"]:checked + label {
    background: var(--green-color);
}

.switch input[type="checkbox"]:checked + label:after {
    transform: translateX(25px);
}

.status-checkbox {
    display: none;
}

.switch input:not(:checked) ~ .toggle-text::after {
    content: attr(data-off);
    color: var(--red-color);
}

.switch input:checked ~ .toggle-text::after {
    content: attr(data-on);
    color: var(--green-color);
}

.toggle-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
}

/* user dropdown in section module  */
#search_user + .select2-container .select2-selection--single {
    background: var(--primary-color) !important;
}
#search_user
    + .select2-container
    .select2-selection--single
    .select2-selection__rendered {
    color: var(--white-color) !important;
}

/* ============================================================
   Invoice Modal UI
   ============================================================ */
.invoice-modal .modal-dialog {
    max-width: 780px;
}
.invoice-modal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--dark-color);
}
.invoice-modal .modal-body {
    padding: 0;
}

/* Document wrapper */
.inv-doc {
    background: var(--white-color);
    font-family: var(--font);
    color: var(--body-color);
}

/* ---- Header ---- */
.inv-header {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 26px 36px 20px;
}
.inv-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}
.inv-app-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0;
    line-height: 1.2;
}
.inv-receipt-label {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.72;
    margin-top: 3px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.inv-meta {
    text-align: right;
}
.inv-invoice-no {
    font-size: 20px;
    font-weight: 700;
}
.inv-date-text {
    font-size: 12px;
    opacity: 0.72;
    margin-top: 4px;
}

/* Purchase type badges */
.inv-purchase-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.inv-purchase-badge.badge-single {
    background: var(--bg-light);
    color: var(--black-color);
    border: 1px solid var(--bg-light);
}
.inv-purchase-badge.badge-bundle {
    background: var(--green-color);
    color: var(--white-color);
    border: 1px solid var(--green-color);
}

/* ---- Body ---- */
.inv-body {
    padding: 24px 36px;
}

/* Parties */
.inv-parties {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 22px;
}
.inv-party-card {
    background: var(--light-color);
    border-radius: 10px;
    padding: 14px 16px;
    border-left: 3px solid var(--primary-color);
}
.inv-party-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--primary-color);
    margin-bottom: 7px;
}
.inv-party-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--body-color);
}
.inv-party-detail {
    font-size: 12px;
    color: var(--light-gray);
    margin-bottom: 2px;
    line-height: 1.5;
    word-break: break-word;
}

/* Section title */
.inv-section-title {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--light-gray);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--assest-color);
}

/* Content */
.inv-content-section {
    margin-bottom: 22px;
}
.inv-content-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px dashed var(--assest-color);
}
.inv-content-item:last-child {
    border-bottom: none;
}
.inv-content-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--body-color);
    margin-bottom: 5px;
}
.inv-content-type-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    background: var(--assest-color);
}
.inv-type-novel {
    color: var(--primary-color);
}
.inv-type-audiobook {
    color: var(--red-color);
}
.inv-type-magazine {
    color: var(--warning-color);
}
.inv-type-bundle {
    color: var(--green-color);
}
.inv-content-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    padding-left: 14px;
}
.inv-bundle-items {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.inv-bundle-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: var(--assest-color);
    border-radius: 6px;
    font-size: 12px;
    color: var(--body-color);
}

/* Pricing */
.inv-pricing {
    margin-bottom: 0;
}
.inv-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: 13px;
    color: var(--body-color);
}
.inv-row-discount {
    color: var(--green-color);
    font-weight: 500;
}
.inv-row-tax {
    color: var(--light-gray);
    font-size: 12px;
}
.inv-pricing-divider {
    border: none;
    border-top: 2px solid var(--assest-color);
    margin: 10px 0 12px;
}
.inv-total-row {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.inv-total-label {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
}
.inv-total-amount {
    font-size: 22px;
    font-weight: 700;
}

/* Footer */
.inv-footer {
    border-top: 1px solid var(--assest-color);
    padding: 14px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--assest-color);
}
.inv-payment-info {
    font-size: 12px;
    color: var(--light-gray);
}
.inv-payment-info span {
    font-weight: 600;
    color: var(--body-color);
}
.inv-thank-you {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
}

/* Action bar */
.inv-action-bar {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 20px;
    border-top: 1px solid var(--assest-color);
    background: var(--white-color);
}

/* Responsive */
@media (max-width: 600px) {
    .invoice-modal .modal-dialog {
        margin: 10px;
    }
    .inv-parties {
        grid-template-columns: 1fr;
    }
    .inv-header,
    .inv-body {
        padding-left: 18px;
        padding-right: 18px;
    }
    .inv-footer {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 14px 18px;
    }
    .inv-invoice-no {
        font-size: 17px;
    }
    .inv-total-amount {
        font-size: 18px;
    }
}
@media print {
    .inv-action-bar {
        display: none !important;
    }
}

/* =====================================================
   ADMIN DASHBOARD REDESIGN — scoped to 
   ===================================================== */

/* --- Stat Cards --- */
.custom-card {
    background-color: var(--white-color);
    border: 1px solid var(--dark-color);
    border-radius: 14px;
    box-shadow: 0 2px 12px var(--dark-color);
    transition:
        box-shadow 0.25s ease,
        border 0.25s ease,
        transform 0.25s ease;
}
.custom-card .card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    gap: 12px;
}
.custom-card .card-body h3 {
    margin: 2px 0 0;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--body-color);
    line-height: 1.1;
}
.custom-card .card-body span {
    font-size: 0.75rem;
    color: var(--light-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    line-height: 1;
}
.card-color-primary:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 28px var(--dark-color);
    transform: translateY(-2px);
}
.card-color-primary .card-body {
    color: var(--body-color);
}

/* Stat card icon */
.card-icon-primary {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 14px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px var(--primary-light);
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.card-color-primary:hover .card-icon-primary {
    color: var(--white-color);
    background-color: var(--primary-color);
}

/* Stat card right-side content */
.card-stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 4px;
    min-width: 0;
}

/* --- Section Cards (chart, content lists, authors) --- */
.earning-cart-bg,
.cart-bg {
    background-color: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 2px 16px var(--dark-color);
    padding: 24px;
}

/* Chart toggle buttons */
.dash-chart-btns {
    display: flex;
    gap: 8px;
}
.dash-chart-btn {
    padding: 7px 18px;
    border-radius: 8px;
    border: 1.5px solid var(--dark-color);
    background: var(--white-color);
    color: var(--light-gray);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font);
    outline: none;
}
.dash-chart-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.dash-chart-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 3px 10px var(--primary-light);
}
.dash-chart-btn:focus {
    outline: none;
}

/* --- Category / Language Cards --- */
.category-box {
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 2px 16px var(--dark-color);
    padding: 24px;
}
.category-image {
    border-radius: 10px;
    object-fit: cover;
    filter: brightness(0.72);
    -webkit-filter: brightness(0.72);
    transition: filter 0.25s ease;
}
.category-image:hover {
    filter: brightness(0.85);
    -webkit-filter: brightness(0.85);
}
.centered {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    font-size: 13px;
    font-weight: 700;
    -webkit-line-clamp: 2;
    padding: 8px 6px 6px;
    background: linear-gradient(
        to top,
        var(--black-50-color) 0%,
        transparent 100%
    );
    border-radius: 0 0 10px 10px;
    text-shadow: 0 1px 3px var(--black-50-color);
}

/* --- Pill Tabs --- */
.custom-tabs {
    margin: 16px 0;
    background: var(--white-color);
    border-radius: 10px;
}
.custom-tabs li.nav-item {
    flex: 1;
    text-align: center;
}
.custom-tabs .nav-link {
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--body-color);
    padding: 8px 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.custom-tabs .nav-link.active {
    background: var(--primary-color);
    color: var(--white-color);
    box-shadow: 0 3px 10px var(--primary-light);
}

/* --- Content List Items --- */
.summary-table-card .border-card {
    padding: 10px 14px;
    border: 1px solid var(--light-color);
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    background: var(--white-color);
    transition:
        box-shadow 0.2s ease,
        background 0.2s ease;
}
.summary-table-card .border-card:hover {
    box-shadow: 0 3px 14px var(--dark-color);
    background: var(--assest-color);
    border: 1px solid var(--primary-color);
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .earning-cart-bg,
    .cart-bg,
    .category-box {
        margin-bottom: 16px;
    }
}
@media (max-width: 767px) {
    .custom-card .card-body {
        padding: 16px 18px;
    }
    .custom-card .card-body h3 {
        font-size: 1.5rem;
    }
    .card-icon-primary {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 12px;
        font-size: 1rem;
    }
    .dash-chart-btn {
        padding: 6px 14px;
        font-size: 12px;
    }
    .author-image {
        width: 64px;
        height: 64px;
    }
}
@media (min-width: 1600px) {
    .custom-card .card-body h3 {
        font-size: 2.1rem;
    }
    .card-icon-primary {
        width: 62px;
        height: 62px;
        min-width: 62px;
    }
    .artist-grid-card .name {
        font-size: 15px;
    }
}

/* =====================================================
   SIDEBAR & HEADER REDESIGN — Global Layout Enhancements
   ===================================================== */

/* Header title area separator (hamburger + divider + title) */
.header .title-control {
    gap: 14px;
}
.header .title-control .side-toggle {
    margin-right: 0;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.header .title-control .side-toggle:hover {
    background: var(--assest-color);
}

/* Header dropdown menus - polished */
.header .head-control .dropdown-menu {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 28px var(--dark-color);
    padding: 6px;
    min-width: 160px;
    margin-top: 6px !important;
}
.header .head-control .dropdown-menu .dropdown-item {
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 500;
    transition: background 0.15s ease;
}
.header .head-control .dropdown-menu .dropdown-item:hover {
    background: var(--assest-color);
}

/* Mobile sidebar overlay backdrop */
@media (max-width: 991px) {
    .sidebar.hide-sidebar {
        padding: 24px 16px;
        width: 280px;
        box-shadow: 8px 0 32px var(--dark-color);
    }
    .header {
        padding: 12px 16px;
    }
    .header .page-title {
        font-size: 17px;
    }
}

/* Sidebar - very large screens */
@media (min-width: 1680px) {
    .sidebar .side-menu a {
        font-size: 14px;
        padding: 11px 14px;
    }
    .sidebar .side-head {
        padding-bottom: 20px;
    }
}

/* =====================================================
   GLOBAL MODULE UI — Toolbar, Table, Cards, Forms
   ===================================================== */

/* --- Page Header Bar (breadcrumb + CTA row) --- */

.ph {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}
.ph-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
}
.ph-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-color);
    margin: 0;
    line-height: 1.2;
}

.action-bar {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    -webkit-box-shadow: 0 1px 4px var(--dark-color);
    box-shadow: 0 1px 4px var(--dark-color);
    overflow: hidden;
    margin-bottom: 16px;
    padding: 14px 16px;
}
.action-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.export-note {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--text-body);
}
.export-note > i {
    font-size: 15px;
    color: var(--primary-color);
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.export-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}
.exp-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 7px;
    cursor: pointer;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
    white-space: nowrap;
    line-height: 1.4;
    background: var(--white-color);
    color: var(--text-body);
    border: 1px solid var(--border-color);
}
.exp-btn:hover {
    background: var(--bg-light);
    border-color: var(--border-color);
    color: var(--black-color);
}
.exp-btn > i {
    font-size: 14px;
}
.search-filter-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.searchbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    background: var(--assest-color);
    border: 1px solid var(--border-color);
    border-radius: 9px;
    padding: 4px 14px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 200px;
    -webkit-transition:
        border-color 0.18s,
        background 0.18s,
        -webkit-box-shadow 0.18s;
    transition:
        border-color 0.18s,
        background 0.18s,
        box-shadow 0.18s;
}
.searchbox:focus-within {
    border-color: var(--primary-color);
    background: var(--white-color);
    -webkit-box-shadow: 0 0 0 3px var(--primary-light);
    box-shadow: 0 0 0 3px var(--primary-light);
}
.searchbox-icon {
    color: var(--text-muted);
    font-size: 14px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.searchbox .form-control {
    border: none;
    background: transparent;
    padding: 7px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    color: var(--black-color);
    height: auto !important;
    line-height: 1.5;
    border-radius: 0;
}
.filter-group {
    display: flex;
}
.filter-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    background: var(--assest-color);
    border-radius: 10px;
    min-width: 180px;
    border: 1.5px solid var(--assest-color);
    -webkit-transition:
        border-color 0.15s,
        -webkit-box-shadow 0.15s;
    transition:
        border-color 0.15s,
        box-shadow 0.15s;
}
.filter-item:focus-within {
    border-color: var(--primary-color);
    -webkit-box-shadow: 0 0 0 3px var(--primary-light);
    box-shadow: 0 0 0 3px var(--primary-light);
}
.sort-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 8px 0 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    border-right: 1px solid var(--border-color);
    height: 100%;
    letter-spacing: 0.04em;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.filter-item .form-control {
    border: none;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    color: var(--black-color);
    height: auto !important;
    line-height: 1.5;
    cursor: pointer;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* --- Select2 inside filter-item --- */
.filter-item .select2-container .select2-selection--single {
    background: var(--assest-color);
    border: none;
}

/* --- Table Card Container --- */
.table-card {
    background: var(--white-color);
    border-radius: 14px;
    border: 1px solid var(--light-color);
    box-shadow: 0 2px 16px var(--dark-color);
    overflow: hidden;
}
.table-card .table-responsive {
    border-radius: 0;
}
.table-card .table {
    margin-bottom: 0;
}
.table-card .table thead th {
    background: var(--assest-color);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.55px;
    color: var(--body-color);
    padding: 13px 16px;
    border-bottom: 2px solid var(--light-color);
    border-top: 0;
    white-space: nowrap;
    vertical-align: middle;
}
.table-card .table td {
    padding: 12px 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--light-color);
    border-top: 0;
    font-size: 13.5px;
}
.table-card tbody tr:last-child td {
    border-bottom: none;
}
.table-card tbody tr:hover td {
    background: var(--primary-light);
}
.table-card .dataTables_wrapper {
    padding: 0;
}
.table-card .dataTables_wrapper > .row {
    margin: 0;
    padding: 12px 20px;
    border-top: 1px solid var(--border-color);
    background: var(--white-color);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.table-card .dataTables_info {
    font-size: 12px;
    color: var(--text-muted);
    padding: 0;
}
.table-card .dataTables_length {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.table-card .dataTables_length label {
    margin: 0;
    font-size: 12px;
    color: var(--text-muted);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.table-card .dataTables_length select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bg-light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 10 6'%3E%3Cpath fill='%236b7280' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 4px 24px 4px 8px;
    font-size: 12px;
    color: var(--black-color);
    height: auto;
    margin: 0;
    cursor: pointer;
    min-width: 56px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.table-card .dataTables_length select.form-control:focus {
    border-color: var(--primary-color);
    -webkit-box-shadow: 0 0 0 2px var(--primary-light);
    box-shadow: 0 0 0 2px var(--primary-light);
    outline: none;
}
.table-card .dataTables_paginate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.table-card .pagination {
    margin: 0;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.table-card .pagination .page-item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.table-card .pagination .page-item .page-link {
    border: 1px solid var(--border-color);
    border-radius: 6px !important;
    font-size: 12px;
    padding: 5px 10px;
    color: var(--text-body, var(--black-color));
    background: var(--white-color);
    font-weight: 500;
    -webkit-transition: all 0.15s;
    transition: all 0.15s;
    height: auto;
    min-width: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.table-card .pagination .page-item.active .page-link {
    background: var(--primary-color) !important;
    border-color: var(--primary-color);
    color: var(--white-color);
    -webkit-box-shadow: 0 2px 6px var(--primary-light);
    box-shadow: 0 2px 6px var(--primary-light);
}
.table-card .pagination .page-item .page-link:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.table-card .pagination .page-item.active .page-link:hover {
    background: var(--primary-color) !important;
    color: var(--white-color);
}
.table-card .pagination .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* --- User Identity Cell (name + handle) --- */
.user-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}
.user-cell .user-fullname {
    font-weight: 600;
    font-size: 13.5px;
    color: var(--body-color);
    line-height: 1.3;
}
.user-cell .user-handle {
    font-size: 12px;
    color: var(--light-gray);
    line-height: 1.3;
}

/* --- Contact Cell (phone + email) --- */
.contact-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}
.contact-cell .contact-email {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
}
.contact-cell .contact-phone {
    font-size: 12px;
    color: var(--light-gray);
}

/* user login type badge  */
.type-badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid var(--border-color);
    background: var(--white-color);
    color: var(--text-body);
    white-space: nowrap;
    line-height: 1.5;
}
.type-badge-normal {
    color: var(--text-muted);
    border-color: var(--border-color);
}
.type-badge-otp {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: var(--primary-light);
}
.type-badge-google {
    color: var(--green-color);
    border-color: var(--green-color);
}
.type-badge-apple {
    color: var(--body-color);
    border-color: var(--body-color);
}
/* --- Form Footer Actions --- */
.form-footer-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--light-color);
    margin-top: 8px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .ph {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .export-group {
        width: 100%;
    }
    .searchbox {
        width: 100%;
    }
    .filter-group {
        width: 100%;
    }
    .dataTables_wrapper > .row {
        padding: 12px 16px;
    }
}
@media (max-width: 576px) {
    .filter-item {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .form-control {
        width: 100%;
    }
    .exp-btn span {
        display: none;
    }
    .pagination {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .dataTables_paginate {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════
   Series Module — Content Picker
   Scoped to .series-content-picker
   ═══════════════════════════════════════════════ */

/* Section divider label */
.scp-section-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.4px;
    text-transform: uppercase;
}
.scp-section-divider::before,
.scp-section-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* ── Tabs ── */
.scp-tabs {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    gap: 0;
    margin-bottom: 0;
}
.scp-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition:
        color 0.18s,
        border-color 0.18s;
    white-space: nowrap;
}
.scp-tab i {
    font-size: 12px;
}
.scp-tab:hover:not(.active) {
    color: var(--body-color);
    background: var(--bg-light);
}
.scp-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 600;
}
.scp-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 18px;
    padding: 0 6px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 700;
    background: var(--primary-light);
    color: var(--primary-color);
    transition:
        background 0.18s,
        color 0.18s;
}
.scp-tab.active .scp-tab-count {
    background: var(--primary-color);
    color: var(--white-color);
}

/* ── Panel container ── */
.scp-panels-wrap {
    padding: 14px 0 4px;
}
.scp-panel {
    display: none;
}
.scp-panel.active {
    display: block;
}

/* ── Per-tab search bar ── */
.scp-search-wrap {
    position: relative;
    margin-bottom: 14px;
}
.scp-search-wrap i {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 12px;
    pointer-events: none;
}
.scp-search-wrap input {
    width: 100%;
    max-width: 320px;
    padding: 7px 12px 7px 32px;
    border: 1px solid var(--border-color);
    border-radius: 7px;
    font-size: 13px;
    background: var(--bg-light);
    color: var(--body-color);
    outline: none;
    transition:
        border-color 0.18s,
        background 0.18s;
    font-family: var(--font);
}
.scp-search-wrap input:focus {
    border-color: var(--primary-color);
    background: var(--white-color);
}

/* ── Content grid ── */
.sc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    max-height: 360px;
    overflow-y: auto;
    padding: 2px 2px 4px;
}
.sc-grid::-webkit-scrollbar {
    width: 5px;
}
.sc-grid::-webkit-scrollbar-track {
    background: transparent;
}
.sc-grid::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

/* ── Content card ── */
.content-card.sc-card {
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--white-color);
    position: relative;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        border-color 0.15s ease;
}
.content-card.sc-card:hover:not(.content-item-disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(40, 62, 80, 0.1);
    border-color: rgba(40, 62, 80, 0.28);
}
.content-card.sc-card.selected-item {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 2px rgba(40, 62, 80, 0.12);
}
.content-card.sc-card.content-item-disabled {
    opacity: 0.42;
    pointer-events: none;
    cursor: not-allowed;
}

/* Card thumbnail — portrait ratio */
.sc-card__thumb {
    position: relative;
    width: 100%;
    padding-bottom: 140%;
    overflow: hidden;
    background: var(--bg-light);
}
.sc-card__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.18s ease;
}
.content-card.sc-card:hover:not(.content-item-disabled) .sc-card__thumb img {
    transform: scale(1.03);
}

/* Checkmark overlay (visible when selected) */
.sc-card__check-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40, 62, 80, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.18s ease;
}
.sc-card__check-overlay i {
    color: var(--white-color);
    font-size: 24px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}
.content-card.sc-card.selected-item .sc-card__check-overlay {
    opacity: 1;
}

/* Already-assigned badge on thumbnail */
.sc-card__assigned-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(220, 38, 38, 0.88);
    color: var(--white-color);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

/* Card body / title */
.sc-card__body {
    padding: 6px 8px 8px;
}
.sc-card__title {
    font-size: 11px;
    line-height: 1.35;
    margin: 0;
    color: var(--body-color);
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Empty state inside grid */
.sc-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
    color: var(--text-muted);
    grid-column: 1 / -1;
    text-align: center;
}
.sc-empty i {
    font-size: 26px;
    margin-bottom: 8px;
    opacity: 0.45;
}
.sc-empty p {
    margin: 0;
    font-size: 13px;
}

/* ── Selected Queue ── */
.scp-queue {
    margin-top: 20px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    background: var(--white-color);
}
.scp-queue-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}
.scp-queue-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--body-color);
    margin: 0;
    line-height: 1.3;
}
.scp-queue-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin: 2px 0 0;
}
.scp-queue-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 24px;
    padding: 0 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    background: var(--primary-color);
    color: var(--white-color);
}
.scp-list-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 16px;
    background: var(--white-color);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.14s;
}
.scp-list-item:last-child {
    border-bottom: none;
}
.scp-list-item:hover {
    background: var(--bg-light);
}

.scp-drag-handle {
    cursor: grab;
    color: var(--text-muted);
    font-size: 14px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.15s;
}
.scp-drag-handle:hover {
    opacity: 1;
}
.scp-drag-handle:active {
    cursor: grabbing;
}

.scp-list-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
}

.scp-list-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.scp-list-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--body-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.scp-list-type-badge {
    font-size: 10px !important;
    padding: 2px 7px !important;
    border-radius: 4px !important;
    align-self: flex-start;
    line-height: 1.5;
}

.scp-order-badge {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 3px 8px;
    border-radius: 5px;
    min-width: 30px;
    text-align: center;
}

.scp-remove-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: transparent;
    color: var(--text-muted);
    font-size: 12px;
    cursor: pointer;
    transition:
        background 0.15s,
        border-color 0.15s,
        color 0.15s;
    padding: 0;
}
.scp-remove-btn:hover {
    background: var(--assest-color);
    border-color: var(--red-color);
    color: var(--red-color);
}

/* START: IMAGE UPLOAD COMPONENT */
.image-upload-wrapper {
    max-width: 220px;
}

.image-upload-wrapper input[type="file"] {
    display: none;
}

.drop-area {
    position: relative;
    width: 85%;
    height: 170px;
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    background: var(--assest-color);
    cursor: pointer;
    overflow: hidden;
    transition: 0.25s;
}
.drop-area-landscape {
    width: 100%;
    height: 140px;
    aspect-ratio: 16 / 9;
}

.drop-area img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    opacity: 0;
    transition: 0.3s;
}

.drop-prompt,
.drop-change-hint {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.drop-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 20px;
    margin-bottom: 8px;
    transition: 0.25s;
}

.drop-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--black-color);
}

.drop-hint {
    font-size: 11px;
    color: var(--text-muted);
}

.drop-change-hint {
    bottom: 0;
    top: auto;
    height: auto;
    padding: 8px;
    flex-direction: row;
    gap: 6px;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 12px;
    font-weight: 600;
    opacity: 0;
    transition: 0.25s;
}

.drop-area:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.drop-area:hover .drop-icon {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.drop-area.dragover {
    border-color: var(--primary-color);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.image-upload-wrapper.has-preview img {
    opacity: 1;
}

.image-upload-wrapper.has-preview .drop-prompt {
    opacity: 0;
    pointer-events: none;
}

.image-upload-wrapper.has-preview .drop-area:hover .drop-change-hint {
    opacity: 1;
}

/* =========================
   Series Premium SaaS View
========================= */

.sv-shell-card,
.sv-list-card,
.sv-stat-card {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    background: var(--white-color);
    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.06),
        0 2px 8px rgba(15, 23, 42, 0.04);
}

/* =========================
   Compact Hero (250px)
========================= */
.sv-shell {
    display: flex;
    min-height: 250px;
    overflow: hidden;
}

.sv-shell__media {
    width: 210px;
    min-width: 210px;
    position: relative;
}

.sv-shell__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sv-shell__content {
    flex: 1;
    min-width: 0;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
}

.sv-shell__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.sv-shell__badge-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sv-shell__title {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.3px;
}

/* Author */
.sv-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sv-author__name {
    font-size: 13px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 2px;
}

.sv-author__username {
    font-size: 12px;
    display: inline;
    color: var(--primary-color);
    font-weight: 500;
    padding: 2px;
    background-color: var(--primary-light);
}

/* Description */
.sv-shell__desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: var(--light-gray);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 991px) {
    .sv-shell {
        flex-direction: column;
        height: auto;
    }

    .sv-shell__media {
        width: 100%;
        min-width: 100%;
        height: 220px;
    }
}

/* draggable items  */

/* --------------------------------------------------------------------------
   Sortable list items — drag-and-drop reorder rows
   -------------------------------------------------------------------------- */

/* Row item replacing inline style="background-color…" */
.sort-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 16px;
    cursor: -webkit-grab;
    cursor: grab;
    -webkit-transition:
        -webkit-box-shadow 0.15s ease,
        background 0.15s ease;
    transition:
        box-shadow 0.15s ease,
        background 0.15s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sort-item:hover {
    background: var(--white-color);
    -webkit-box-shadow: 0 4px 12px var(--dark-color);
    box-shadow: 0 4px 12px var(--dark-color);
}

.sort-item:active {
    cursor: -webkit-grabbing;
    cursor: grabbing;
    -webkit-box-shadow: 0 4px 12px var(--dark-color);
    box-shadow: 0 4px 12px var(--dark-color);
}

/* Grip icon — visual drag affordance */
.sort-handle {
    color: var(--text-muted);
    font-size: 13px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: color 0.15s ease;
    transition: color 0.15s ease;
}

.sort-item:hover .sort-handle {
    color: var(--primary-color);
}
