body {
    background-color: var(--color-background-dark);
}

button, a{
    font-family: var(--font-family-base);
    cursor: pointer;
}

/* Profile Card */ /* Profile progress */
  
/* make sure image/initials fill the circle */
.circle-profile_container .profile-card__image,
.circle-profile_container .profile-card__initials {
    inset: 0;
}
.circle-profile_container .profile-card__image {
    object-fit: cover;
}
  
/* Overlay same concept as artwork-item */
.profile-avatar__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    cursor: pointer;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
  
.circle-profile_container:hover .profile-avatar__overlay {
    opacity: 1;
}

.circle-profile_container:focus-within .profile-avatar__overlay {
    opacity: 1;
}
  
.profile-avatar__overlay svg {
    width: auto;
    height: auto;
}


.profile-progress__item,
.profile-card__link {
    padding: 10px 20px;
}

/* Selected navigation profile */
.profile-card__link.active .profile-card__text {
    color: var(--color-primary) !important;
}

.profile-card__link.active .profile-card__icon svg path,
.profile-card__link.active .profile-card__arrow svg path {
    fill: var(--color-primary) !important;
}
.profile-card__link.active .profile-card__indicator {
    background-color: var(--color-primary) !important;
}

/* Profile Card - navigation */
.navigation-phone {
    position: fixed;
    bottom: 15px;
    left: 4%;
    background: var(--color-black);
    box-shadow: 0px -10px 15px 0px rgba(0, 0, 0, 0.60);
    width: 92%;
    height: 65px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 36px !important;
    border-radius: 6px;
    margin: 0 auto;
    z-index: 3;
}

[data-theme="light"] .navigation-phone {
    box-shadow: 0px -10px 15px 0px rgba(0, 0, 0, 0.20);
}

.profile-card__link-phone.active svg path {
    fill: var(--color-primary) !important;
}

.profile-card__indicator{
    width: 6px;
    height: 2px;
    border-radius: 3px;
}
.profile-card__link-phone.active .profile-card__indicator{
    background: var(--color-primary) !important;
}

/* .profile-progress__item, .profile-card__link {
    padding: 4px;
    width: min-content !important;
    background: transparent !important;
} */

/*  */
.dashboard-main-container{
    display: flex;
    padding: 40px 80px !important;
    gap: var(--spacing-5xl); /* 40px */
    width: 100%;
    /* max-width: 1920px; */ /* Optionnel : limite la largeur maximale */
    margin-bottom: var(--spacing-6xl);
}

@media (min-width: 1921px) {
    .dashboard-main-container{
        max-width: 1920px;
        padding: 40px 0 !important;
        margin: 0 auto;
        transition: .6s all;
        width: auto;
    }

    .header::before {
        left: 5%;
        width: 90%;

    }

    .header .banner {
        max-width: 1920px;
        padding: 0;
        margin: 0 auto;
    }

}

/* Section gauche */
.profile-dashboard-overview{
    /* width: 25.32%; */ /* (438 / 1720) * 100% = 25.32% */
    flex: 0 0 25.32%;
    min-width: 330px;
    transition: min-width 0.6s ease;
}

.dashboard-mobile-identity {
    display: none;
}

/* Section droite */
.dashboard-content {
    /* width: 74.106%; */ /* (1282 / 1720) * 100% = 74.42% */
    flex: 1; /* the rest */ /* flex: 0 0 74.106%; */
}

/*  */
.stat-card{
    flex: 1;
    --dashboard-stat-card-height: 320px;
    height: var(--dashboard-stat-card-height);
    transition: height 0.6s ease;
}
.stat-card.stat-card-small{
    height: var(--dashboard-stat-card-height);
}
.stat-card.stat-card-extra-small{
    height: auto;
}

.stat-card__value.dashboard-stat-value--loading {
    width: 96px;
    height: 38px;
    color: transparent !important;
    border-radius: var(--skeleton-radius-sm);
}

#dashboard-revenue.dashboard-stat-value--loading {
    width: 132px;
}

.stat-card__link-icon{
    width: 19px;
    height: 19px;
}

/* Slider Stat-cards */
.slider-container .slider {
    /* transform: none !important; */
    transition: transform 0.5s ease-in-out; /* Smooth sliding */
}

.btn-slide {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: var(--color-accent); /* default */
    cursor: pointer;
    transition: 0.5s;
}

.btn-slide.active {
    width: 16px;
    background: var(--color-primary);
}



/* Left section in middle of dashboard */
.stat-card-extra-small{
    flex: 0 0 32.8%;
}

/* Right section in middle of dashboard */
.artwork-display{
    /* flex: 0 0 67.2%; */
    flex: 1; /* take the rest */
}

/* Artwork card */
.artwork-card{
    padding: var(--spacing-xl) var(--spacing-3xl);
}

.artwork-card.is-clickable,
.artwork-item.is-clickable {
    cursor: pointer;
}

.artwork-card.is-clickable {
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.artwork-card.is-clickable:hover {
    background-color: #111722;
}

.artwork-card__content-alt{
    min-width: 230px;
}
.artwork-card__content-alt h3{
    min-width: 200px;
}

.artwork-card__image{
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0; /* Prevent the image from shrinking */
}

.artwork-card__title.modal-trigger{
    cursor: pointer;
}

.artwork-card__info a {
    display: block;
    width: 160px;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Minimum Width Utility */
.date,
.size,
.price{
    min-width: 100px;
}

.price {
    min-width: 78px;
}

.artwork-card__status-container{
    min-width: 150px;
}

.artwork-card__status{
    gap: 70px;
}

.artwork-card__status-label{
    height: 26px;
    padding: 0 20px;
}

.artwork-card__status-icon{
    width: 32px;
    height: 32px;
    flex-shrink: 0; /* Prevent the image from shrinking */
}
.artwork-card__status-icon.modal-trigger{
    cursor: pointer;
}

/* Keep first paint in sync with stored studio view mode */
html[data-a21-artworks-view='list'] #artworks-list-container:not(.d-none) {
    display: flex !important;
}

html[data-a21-artworks-view='list'] #artworks-grid-container {
    display: none !important;
}

html[data-a21-artworks-view='grid'] #artworks-list-container {
    display: none !important;
}

html[data-a21-artworks-view='grid'] #artworks-grid-container:not(.d-none) {
    display: grid !important;
}

.line-stroke {
    width: 95.32%;
    height: 1px;
    background: var(--color-accent);
}

/* Main container for artworks */
.artwork-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl); /* Gap between artworks *//* 20px */
    justify-content: start;
}

.artwork-container.filled-dashboard.is-empty {
    grid-template-columns: 1fr;
    --dashboard-empty-stat-height: 305px;
}

.artwork-container.filled-dashboard:not(.is-empty) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.artwork-container.filled-dashboard.is-empty .artwork-item:first-child {
    max-width: none;
    width: 100%;
    aspect-ratio: unset;
    height: var(--dashboard-empty-stat-height);
}

.artwork-container.filled-dashboard > .artwork-item:first-child {
    grid-column: 1 / 1;
    width: 100%;
    max-width: none;
    aspect-ratio: 1 / 1;
}

.artwork-container.filled-dashboard .artwork-item:not(:first-child) {
    width: 100%;
    max-width: none;
    aspect-ratio: 1 / 1;
}

.artwork-container.is-1 {
    grid-template-columns: minmax(0, 400px);
}

.artwork-container.is-2 {
    grid-template-columns: repeat(2, minmax(0, 400px));
}

.artwork-container.is-3plus {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .artwork-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 1180px) {
    .artwork-container.filled-dashboard:not(.is-empty) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .artwork-container.filled-dashboard:not(.is-empty) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* @media (max-width: 560px) {
    .artwork-container.filled-dashboard:not(.is-empty) {
        grid-template-columns: 1fr;
    }
} */

/* Individual artwork item */
.artwork-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease-in-out;
}

.artwork-item.is-clickable:hover {
    transform: translateY(-2px);
}

/* Image styling */
.artwork-item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* hover effect cards */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.artwork-item:hover .overlay {
    opacity: 1;
}

.overlay svg{
    width: 18.341px;
    height: auto;
}

/* Filter Button */
.filter-button {
    background: var(--color-secondary);
    width: 137px;
    height: 50px;
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    outline: none;
}

.filter-button.active{
    background-color: var(--color-primary);
}
.filter-button.active span{
    color: var(--color-secondary-alt) !important;
}

/* Filter Dropdown */
.filter-options {
    position: absolute;
    top: calc(100% + 10px); /* Adjust based on your design */
    right: 0;
    width: 380px; /* Adjust as needed */
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
    z-index: 50;
    overflow: visible;
}

.filter-date-field {
    width: 100%;
}

.filter-date-trigger {
    min-height: 50px;
    padding: 12px 16px;
    border: 1px solid var(--color-accent);
    background: transparent;
    color: var(--color-support-alt);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.filter-date-trigger.is-selected {
    border-color: var(--color-primary);
    background: rgba(26, 107, 255, 0.08);
}

.filter-date-label {
    color: inherit;
    font-size: var(--font-size-b-18);
    font-weight: 500;
    line-height: normal;
    text-align: left;
}

.filter-date-range-selector {
    top: calc(100% + 12px);
    left: 0;
    width: min(480px, calc(100vw - 48px));
    z-index: 5;
}

.filter-date-field > .filter-date-range-selector {
    top: 0;
    right: calc(100% + 12px);
    left: auto;
    z-index: 30;
}

.filter-date-range-selector .calendar {
    overflow: hidden;
    border: 1px solid rgba(26, 107, 255, 0.45);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.35);
}

/* Filter Buttons */
.filter-apply, .filter-reset{
    flex: 1;
}

.filter-reset{
    background: var(--color-deep-sapphire-blue);
}

/* Search Input */
.search-bar{
    width: 400px;
    /* width: 100%; */
    transition: flex 0.3s ease;
}

.search-bar__icon{
    position: absolute;
    content: '';
    left: 20px;
}

.search-bar__input{
    min-width: 260px; /* For the transition be smooth */
    padding: 10px 20px 10px calc(20px + 22px + 10px); /* for the position of icon */
}

.search-bar:has(.search-bar__input:focus) {
    flex: 1;
}

.feedback-modal-content {
    width: 1190px;
}

.modal .btn-submit {
    padding: 10px 20px;
}

.dashboard .modal .modal-base {
    position: relative;
}

.dashboard .modal .modal-header {
    padding-right: 80px;
}

.dashboard .modal .modal-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 0;
    margin: 0;
    display: flex !important;
    z-index: 2;
}

.modal .form-control_textarea{
    height: 214px;
}

.modal .file-upload{
    padding: 16px;
    border: 1px solid var(--color-accent);
}
.modal .file-upload.has-file{
    border-color: var(--color-primary);
}
.modal .file-upload.error{
    border-color: var(--color-warning);
}
.modal .file-icon{
    width: 19px;
    height: 19px;
}

.form-message {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    white-space: pre-line;
}

.form-error {
    color: var(--color-warning);
}

.form-success {
    color: #0BB783;
}

/* Studio pagination */
.studio-pagination {
    width: 100%;
    padding: var(--spacing-xxl);
    border-radius: var(--border-radius-md);
    background: var(--color-secondary);
    display: grid;
    grid-template-columns: 57px minmax(0, 1fr) 57px;
    align-items: center;
    gap: var(--spacing-3xl);
}

.studio-pagination__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.studio-pagination__pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(var(--spacing-md), 3.6vw, var(--spacing-7xl));
    min-width: 0;
}

.studio-pagination__page {
    min-width: 24px;
    height: 36px;
    padding: 0 var(--spacing-xs);
    border: 0;
    border-radius: var(--border-radius-xs);
    background: transparent;
    color: var(--color-text);
    font-family: var(--font-family-base);
    font-size: var(--font-size-h-20);
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color var(--transition-duration), background var(--transition-duration), transform var(--transition-duration);
}

.studio-pagination__page.is-active {
    color: var(--color-primary);
    cursor: default;
    pointer-events: none;
}

.studio-pagination__page:not(.is-active):hover {
    background: var(--color-hover-action);
    color: var(--color-secondary-alt);
}

.studio-pagination__page:not(.is-active):active {
    transform: scale(0.96);
}

.studio-pagination__page:disabled {
    opacity: 1;
    cursor: default;
}

.studio-pagination__control {
    width: 57px;
    height: 57px;
    padding: 0;
    border-radius: var(--border-radius-sm);
    background: var(--color-deep-sapphire-blue);
    color: var(--color-primary);
    transition: background var(--transition-duration), color var(--transition-duration), opacity var(--transition-duration), transform var(--transition-duration);
}

.studio-pagination__control:hover:not(:disabled) {
    background: var(--color-primary);
    color: var(--color-secondary-alt);
}

.studio-pagination__control:disabled {
    opacity: 0.36;
    cursor: default;
    pointer-events: none;
    transform: none;
}

.studio-pagination__icon {
    width: 24px;
    height: 24px;
    display: block;
    background: currentColor;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: 24px 24px;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 24px 24px;
}

.studio-pagination__icon--prev {
    mask-image: url('/assets/icons/solid/left.svg');
    -webkit-mask-image: url('/assets/icons/solid/left.svg');
}

.studio-pagination__icon--next {
    mask-image: url('/assets/icons/solid/right.svg');
    -webkit-mask-image: url('/assets/icons/solid/right.svg');
}

.studio-pagination__ellipsis {
    min-width: 24px;
    color: var(--color-support);
    font-size: var(--font-size-h-20);
    font-weight: var(--font-weight-semibold);
    line-height: 1;
    text-align: center;
}

@media (max-width: 860px) {
    .studio-pagination {
        padding: var(--spacing-xxl);
        grid-template-columns: 49px minmax(0, 1fr) 49px;
        gap: var(--spacing-lg);
    }

    .studio-pagination__control {
        width: 49px;
        height: 49px;
    }

    .studio-pagination__pages {
        gap: var(--spacing-lg);
        overflow-x: auto;
        scrollbar-width: none;
    }

    .studio-pagination__pages::-webkit-scrollbar {
        display: none;
    }

    .studio-pagination__page,
    .studio-pagination__ellipsis {
        font-size: var(--font-size-h-18);
    }
}

@media (max-width: 480px) {
    .studio-pagination {
        padding: var(--spacing-lg);
        grid-template-columns: 43px minmax(0, 1fr) 43px;
        gap: var(--spacing-sm);
    }

    .studio-pagination__control {
        width: 43px;
        height: 43px;
    }

    .studio-pagination__pages {
        justify-content: flex-start;
        gap: var(--spacing-md);
    }

    .studio-pagination__page,
    .studio-pagination__ellipsis {
        min-width: 20px;
    }
}

/* empty-state card */
.empty-state{
    padding: 90px 140px;
}

/* collection cards */
.collection-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 414px));
    gap: var(--spacing-xl); /* 20px */
    transition: transform 0.5s ease-in-out; /* Smooth sliding */
    justify-content: start;
}

.collection-items.is-1 {
    grid-template-columns: minmax(0, 414px);
}

.collection-items.is-2 {
    grid-template-columns: repeat(2, minmax(0, 414px));
}

.collection-items.is-3plus {
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

.collection-item {
    background-color: lightgray;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    
    padding: 20px;
    width: 100%;
    max-width: 414px;
    aspect-ratio: 414 / 320;
}
.collection-items.is-3plus .collection-item {
    max-width: 440px;
}

.collection-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-secondary) 4D;
}

.collection-item__options-button{
    height: 43px;
    width: 43px;

    background: rgba(14, 17, 24, 0.80);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(5px);
}

.collection-item__content{
    z-index: 1;
}

.collection-item__image{
    width: 80px;
    height: 60px;

    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.30));
    object-fit: cover;
}

/* Connection drop-down menu */
.collection-item__options-button.active {
    transition: transform 0.3s ease-in-out;
}
.collection-item__options-button.active svg {
    transform: rotate(90deg);
}

/* Options Dropdown */
.collection-item__options-list {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 100%;
    background: rgba(14, 17, 24, 0.80);
    filter: drop-shadow(0px 0px 30px rgba(0, 0, 0, 0.30));
    backdrop-filter: blur(15px);
    z-index: 3;

}

.collection-item__options-list.d-none {
    display: none;
}

.collection-item__options-list.active {
    display: block;
}

.collection-item__options-list ul li .menu-link{
    padding: 10px 16px;
}

/* Change text, icon color on hover */
.collection-item__options-list ul li:hover .menu-link label{
    color: var(--color-secondary-alt) !important;
}
.collection-item__options-list ul li:hover .menu-link svg path {
    fill: var(--color-secondary-alt);
}

/* Light theme collection item options list */
[data-theme="light"] .collection-item__options-list ul li:hover .menu-link svg path {
    fill: #EAF1FF;
}
[data-theme="light"] .collection-item__options-list ul li:hover .menu-link label {
    color: #EAF1FF !important;
}

.collection-item__options-list ul li .menu-link .menu-icon {
    width: 19px;
    height: 19px;
}


/* Wrap container for scrollbar */
.scrollbar-container {
    position: relative;
    overflow: auto; /* Enable scrolling */
    border-radius: 6px;
}

/* Calender range Date */
.calendar {
    display: grid;
    cursor: default;
    background: var(--color-secondary);
    border-radius: 6px;
    box-shadow: 0px 8px 14px 0px rgba(15, 42, 81, 0.08);
}

.week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 15.67px;
    padding: 0 20px;
    margin-bottom: 10.83px;
}

.weekday {
    text-align: center;
    width: 38px;
    height: 32px;
    padding: 10px;
    border-radius: 3px;
    background: var(--color-black);
    color: var(--color-support-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-b-14);
    font-style: normal;
    font-weight: 600;
    line-height: 14px;
}

.month {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: inherit;
    align-self: stretch;
    padding: 4px 20px;
    margin-bottom: 10.83px;
}

.month button {
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px var(--color-black)00030;
    border-radius: 3px;
    background: var(--color-primary);
    display: flex;
    width: 38px;
    height: 30px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.month span.year-name,
.month span.month-name {
    color: var(--color-support-alt);
    font-size: var(--font-size-b-14);
    font-style: normal;
    font-weight: 600;
    line-height: 14px;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18.83px;
    row-gap: 10.83px;
    column-gap: 15.67px;
    padding: 0 20px 20px 20px;
}

.day {
    text-align: center;
    display: flex;
    width: 38px;
    height: 32px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    background: var(--color-accent);
    color: var(--color-secondary-alt);
    font-size: var(--font-size-b-14);
    font-style: normal;
    font-weight: 600;
    line-height: 14px;
    transition: background 0.3s, color 0.3s;
}

.day:hover {
    box-shadow: inset 0 0 8px var(--color-black)00030;
}

/* Styles for the checked day */
.day.checked {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: inset 0 0 8px #00000030;
    border-radius: 5px 0px 0px 5px;
}

/* Styles for the end checked day */
.day.checked.end {
    border-radius: 0px 5px 5px 0px;
}

/* Styles for the single day selection */
.day.checked.start.end{
    border-radius: 5px;
}

/* Styles for the in-between days */
.day.in-between {
    background: var(--color-deep-sapphire-blue);
    color: var(--color-primary);
}

.day.other-month {
    background-color: var(--color-black);
    color: var(--color-support-alt);
    cursor: not-allowed;
}

.calendar-timer {
    display: flex;
    width: 100%;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    background: var(--color-secondary);
}

.output {
    padding: 10px 20px;
    color: var(--color-support-alt);
    text-align: center;
    font-family: "Barlow Semi Condensed";
    font-size: var(--font-size-b-18);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    height: inherit;
    display: flex;
    align-items: center;
}

.close-btn-calender {
    width: 58px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 0px 6px 6px 0px;
    background: rgba(34, 41, 58, 0.20);
    cursor: pointer;
    padding-right: 4px;
}

.date-range{
    padding: 14px 20px;
    width: 400px;
    /* width: 100%; */
}
.close-btn-calender-out{
    width: 22px;
    height: 22px;
}
.date-range-selector{
    left: 0;
    top: 0;
    z-index: 3;
}

.date-range-toggle-button.selected {
    background: var(--color-primary) !important;
}
.date-range-toggle-button.selected svg path {
    fill: #EAF1FF;
}

/* Custom Scrollbar Styles */
.scrollbar-container::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    background-color: transparent;
    right: 10px;
    margin-right: 10px;
    padding-right: 10px;
}

.scrollbar-container::-webkit-scrollbar {
    width: 4px;
    background-color: transparent;
    right: 10px;
    margin-right: 10px;
    padding-right: 10px;
}

.scrollbar-container::-webkit-scrollbar-thumb {
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background: var(--color-accent);
    right: 10px;
    margin-right: 10px;
    padding-right: 10px;
}

/* Responsive styling for Pc devices */ /* (min-width: 1079px) and (max-width: 1920px) */

@media (max-width: 1370px) {

    .feedback-modal-content{
        width: 100%;
        margin: 0 78px;
    }

    .artwork-card__status {
        gap: 15px;
    }

    /* Adjust artwork card title */
    .artwork-card__content-alt h3 {
        max-width: 150px;
        min-width: auto;
    }

    /* Message Cards */
    .empty-state {
        padding: 90px;
    }

}

@media (max-width: 1300px) {

    .size, .date {
        display: none;
    }

    .toolbar .search-bar {
        width: 50%;
    }

}

@media (max-width: 1160px) {

    .profile-dashboard-overview {
        min-width: 266px;
    }

    /* Message Cards */
    .empty-state {
        padding: 50px;
    }

    /* footer */
    .footer__content{
        justify-content: center !important;
    }

    .footer__copyright{
        display: none !important;
    }
}

/* Responsive styling for Tablet devices */ /* (min-width: 768px) and (max-width: 1080px) */

@media (max-width: 1080px) {

    .dashboard-main-container{
        flex-direction: column;
    }

    .filter-date-range-selector {
        width: min(420px, calc(100vw - 64px));
    }

    .filter-date-field > .filter-date-range-selector {
        top: calc(100% + 12px);
        right: auto;
        left: 0;
    }

    /* Profile Card */
    .profile-card__links {
        flex-direction: row !important;

    }

    a.profile-card__link {
        justify-content: center !important;
        height: auto !important;
    }

    .profile-card__link-content {
        flex-direction: column;
    }

    .profile-card__arrow{
        display: none !important;
    }

    .profile-card__text{
        text-align: center;
    }

    .profile-progress {
        display: none !important;
    }

    .date {
        display: block;
    }

}

@media (max-width: 800px) {

    .dashboard-main-container {
        padding: 30px 60px !important;
        gap: var(--spacing-3xl); /* 30px */
    }

    .artwork-card__status .artwork-card__status-label{
        display: none !important;
    }

    .stat-card {
        --dashboard-stat-card-height: 260px;
        height: var(--dashboard-stat-card-height);
        transition: .6s all;
    }

    .stat-card.stat-card-extra-small {
        flex: 0.4;
    }

    .date {
        display: none;
    }

}

/* Responsive styling for mobilee devices */ /* (max-width: 752px) */
@media (max-width: 752px) {
    .collection-items.is-3plus,
    .collection-items.is-2 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .collection-items.is-3plus .collection-item,
    .collection-items.is-2 .collection-item {
        max-width: none;
    }
}

/* .slider-controls {
    display: flex;
    bottom: -14px;
    gap: 6px;
} */

@media (max-width: 700px) {

    .profile-dashboard-overview,
    .profile-card{
        display: none !important;
    }

    .dashboard-mobile-identity {
        display: block;
        background: var(--color-background-dark);
    }

    .dashboard-mobile-identity__cover {
        position: relative;
        width: 100%;
        height: 145px;
        overflow: hidden;
        background: var(--color-secondary);
    }

    .dashboard-mobile-identity__cover-image,
    .dashboard-mobile-identity__cover-empty {
        width: 100%;
        height: 100%;
    }

    .dashboard-mobile-identity__cover-image {
        object-fit: cover;
    }

    .dashboard-mobile-identity__cover-empty {
        background: var(--color-accent);
    }

    .dashboard-mobile-identity__cover-camera.banner__camera-icon {
        right: 14px;
        bottom: 14px;
        color: var(--color-secondary-alt);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
        z-index: 1;
    }

    .dashboard-mobile-identity__cover-camera:disabled,
    .dashboard-mobile-identity__avatar-camera:disabled {
        cursor: not-allowed;
        opacity: 0.55;
    }

    .dashboard-mobile-identity__body {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -45px;
        padding-bottom: 10px;
        position: relative;
    }

    .dashboard-mobile-identity__avatar {
        width: 96px;
        height: 96px;
        border: 4px solid var(--color-background-dark);
        background: var(--color-accent);
        flex-shrink: 0;
    }

    .dashboard-mobile-identity__avatar-image {
        object-fit: cover;
    }

    .dashboard-mobile-identity__avatar-initials {
        font-size: 30px;
        line-height: 1;
    }

    .dashboard-mobile-identity__details {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 14px;
        min-width: 0;
        max-width: 100%;
    }

    .dashboard-mobile-identity__name {
        max-width: 100%;
        margin: 0;
        font-size: 24px;
        line-height: 1.2;
        font-weight: 700;
        overflow-wrap: anywhere;
    }

    .dashboard-mobile-identity__country {
        max-width: 100%;
        margin: 0;
        font-size: 16px;
        line-height: 1.3;
        font-weight: 500;
        overflow-wrap: anywhere;
    }

    .navigation-phone{
        display: flex !important;
    }

    .dashboard-main-container {
        padding: 20px 20px 65px !important;
    }

    .stat-section.middle {
        flex-direction: column;
    }
    .stat-section.middle .stat-card.stat-card-extra-small {
        height: 178px;
        flex: auto;
    }

    /* Stat Card */
    .slider-container {
        margin-bottom: 10px;
    }

    .slider-container .slide {
        width: 370px !important;
        flex-shrink: 0;
    }

    .stat-card {
        flex: auto;
    }

    .slide-row {
        width: 100%;
        height: 100%;
        overflow: hidden;
        /* border-radius: 10px; */
    }

    /* Message Cards */
    .empty-state {
        padding: 40px;
    }

}

@media (max-width: 600px) {

    .toolbar .search-bar {
        width: 100%;
    }

    .search-bar__input {
        min-width: auto;
        display: none;
    }

    .toolbar .search-bar__icon {
        width: 43px !important;
        height: 43px !important;
        background: var(--color-secondary);
        justify-content: center !important;
        border-radius: 6px;
        cursor: pointer;
        left: 0;
    }

    .search-bar__input.active {
        display: block !important;
        width: 100%;

        padding-left: 50px; /* Adjust for icon space */
    }

    .layout-filter-container.hidden {
        display: none !important;
    }

    /* When both input and filter container are visible */
    .search-bar.has-text {
        flex: 1;
        width: 100%; /* Adjust based on filter container width */
    }

    .search-bar.has-text .search-bar__input.active {
        width: 100%;
    }

    .search-bar:has(.search-bar__input:focus) {
        flex: 1;
    }

    .layout-filter-container{
        justify-content: end;
    }

    .date, .size, .price{
        display: none;
    }

    .toolbar > div:last-child{
        justify-content: space-between !important;
    }

    .artwork-card__content-alt h3{
        max-width: max-content;
    }

    .filter-options{
        width: calc(100% * 2.5);
    }
    .filter-button {
        width: 100px;
    }

    .filter-date-range-selector {
        width: min(360px, calc(100vw - 48px));
    }

    .artwork-card__status-container {
        min-width: 109px;
    }

}

@media (max-width: 485px) {

    .slider-container .slide{
        width: 280px !important;
        --dashboard-stat-card-height: 200px;
        height: var(--dashboard-stat-card-height);
    }

    .stat-card.stat-card-small{
        --dashboard-stat-card-height: 200px;
        height: var(--dashboard-stat-card-height);
    }

    .artwork-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .artwork-container.filled-dashboard.is-empty {
        --dashboard-empty-stat-height: 178px;
    }

    /* 1st artwork item spans full width */
    .artwork-container.filled-dashboard > .artwork-item:first-child {
        grid-column: 1 / -1;
        height: 178px;
        aspect-ratio: unset;
    }

    /* Status Card */
    .overlay span{
        width: 30px !important;
        height: 30px !important;
    }
    .overlay svg {
        width: 15px;
    }

    /* Collection Cards */
    .collection-items {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    }
    .collection-item{
        max-width: 100%;
        aspect-ratio: 414 / 320;
    }

    .collection-item__image {
        width: 70px;
        height: 50px;
    }

    /* full with for navigation */
    .navigation-phone{
        width: 100%;
        left: 0;
        bottom: 0;
        box-shadow: 0px -10px 50px 0px rgba(0, 0, 0, 0.30);
        border-radius: 0;
    }

    /* artwork card image sizes */
    .artwork-card__image {
        width: 40px;
        height: 40px;
    }

    .artwork-card__status-icon {
        width: 26px;
        height: 26px;
    }
    .artwork-card__status-icon svg{
        width: 10.705px;
    }

    .artwork-list:has(.artwork-card--skeleton) {
        gap: 14px;
        padding-bottom: 104px;
    }

    .artwork-card--skeleton {
        min-height: 106px;
        padding: 18px 20px;
        align-items: center !important;
        gap: 16px;
        overflow: hidden;
        border: 1px solid rgba(74, 77, 86, 0.28);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    }

    .artwork-card--skeleton .artwork-card__content-alt {
        min-width: 0;
        flex: 1 1 auto;
        align-items: center !important;
        gap: 16px;
    }

    .artwork-card--skeleton .artwork-card__image {
        width: 56px;
        height: 56px;
        border-radius: 8px;
    }

    .artwork-card--skeleton .artwork-card__info {
        flex: 1 1 auto;
        min-width: 0;
    }

    .artwork-card--skeleton .artwork-skeleton__title {
        width: min(100%, 210px);
        height: 18px;
        margin-bottom: 12px;
    }

    .artwork-card--skeleton .artwork-skeleton__subtitle {
        width: min(78%, 160px);
        height: 16px;
    }

    .artwork-card--skeleton > .artwork-skeleton__meta {
        display: none;
    }

    .artwork-card--skeleton .artwork-card__status-container {
        min-width: 0;
        flex: 0 0 auto;
    }

    .artwork-card--skeleton .artwork-skeleton__status {
        width: 34px;
        height: 28px;
        border-radius: 10px;
    }

    .artwork-card--skeleton .artwork-card__status-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }


    /* Calender */

    .date-range,
    .date-range-selector,
    .toolbar .calendar-container{
        width: 100% !important;
    }

    .filter-options {
        width: min(100vw - 32px, 360px);
    }

    .filter-date-range-selector {
        width: min(100vw - 40px, 340px);
    }

    .month{
        padding: 4px 10px 0 10px !important;
        gap: 7px !important;
    }
    .week{
        gap: 7px !important;
        padding: 0 10px !important;
    }
    .days{
        column-gap: 7px !important;
        padding: 0 10px 10px 10px !important;
        row-gap: 7px !important;
    }
    .week .weekday,
    .days .day{
        width: 100% !important;
    }

/*     .artwork-card .artwork-card__status-container {
        display: none;
    } */

    /* Message Cards */
    .empty-state {
        padding: 50px 20px;

        /* spaicing between elements */
        gap: 10px !important;
        display: flex;
        flex-direction: column;
    }

}

/* Dashboard data states */
.dashboard-error {
    padding: 12px 14px;
    margin: 0 0 12px 0;
    border-radius: 8px;
    background-color: var(--background-error, #2b1a1f);
    color: var(--color-error, #ff6b6b);
    font-size: 14px;
    display: none;
}

.dashboard-error:not(.d-none) {
    display: block;
}

.collection-item--skeleton {
    background-color: var(--color-secondary);
    background-image: none;
    pointer-events: none;
}

.collection-item--skeleton::before {
    background: rgba(14, 17, 24, 0.4);
}

.collection-item__skeleton-top,
.collection-item--skeleton .collection-item__details {
    position: relative;
    z-index: 1;
}

.collection-item__skeleton-top {
    justify-content: flex-start;
}

.collection-item__skeleton-options {
    width: 43px;
    height: 43px;
    border-radius: var(--skeleton-radius-lg);
}

.collection-item__skeleton-title {
    width: clamp(190px, 58%, 260px);
    max-width: 100%;
    height: 24px;
    margin-bottom: 12px;
    border-radius: var(--skeleton-radius-sm);
}

.collection-item__skeleton-meta {
    width: 98px;
    height: 16px;
    border-radius: var(--skeleton-radius-sm);
}

.collection-item__skeleton-meta:last-child {
    width: 116px;
}

.collection-item__skeleton-image {
    width: 80px;
    height: 60px;
    border-radius: var(--skeleton-radius-md);
}

.artwork-card--skeleton {
    pointer-events: none;
}

.artwork-skeleton__title {
    width: 160px;
    max-width: 100%;
    height: 20px;
    margin-bottom: 10px;
    border-radius: var(--skeleton-radius-sm);
}

.artwork-skeleton__subtitle {
    width: 120px;
    height: 16px;
    border-radius: var(--skeleton-radius-sm);
}

.artwork-skeleton__meta {
    width: 72px;
    height: 16px;
    border-radius: var(--skeleton-radius-sm);
}

.artwork-skeleton__status {
    width: 108px;
    height: 26px;
    border-radius: var(--skeleton-radius-circle);
}

.artwork-grid-skeleton__fill {
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.artwork-item--skeleton {
    pointer-events: none;
}

.dashboard-artwork-grid {
    width: 100%;
}

.dashboard-artwork-grid .artwork-item {
    width: 100%;
    max-width: none;
}

.dashboard-artwork-grid .artwork-item img {
    object-fit: cover;
}

.status-pill {
    display: flex;
    align-items: center;
    justify-content: center;
}
