.dashboard-filter select.form-input,
.dashboard-filter select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 44px 14px 14px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--text) 50%),
        linear-gradient(135deg, var(--text) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.dashboard-filter select.form-input:focus,
.dashboard-filter select:focus {
    border-color: rgba(255, 245, 0, 0.55);
    outline: none;
}

.dashboard-filter .form-label {
    color: var(--muted);
    margin-bottom: 8px;
}

.modal-open {
    overflow: hidden;
}

.dashboard-page-hero {
    padding-bottom: 24px;
}

.dashboard-section {
    padding: 0 0 56px;
}

.dashboard-toolbar {
    margin-bottom: 24px;
}

.dashboard-filter {
    max-width: 320px;
}

.dashboard-filter select option {
    background: #414141;
        color: var(--text);
}

.dashboard-two-col,
.dashboard-two-col-artist {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.dashboard-panel {
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
}

.dashboard-panel-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.dashboard-panel-header h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 400;
}

.account-summary-card {
    margin-bottom: 20px;
}

.account-summary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.account-summary-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.account-summary-avatar {
    width: 104px;
    height: 104px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
}

.account-summary-copy h2 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1;
    font-weight: 400;
}

.account-summary-subtitle {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 16px;
}

.account-summary-text {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    font-weight: 300;
}

.account-detail-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
}

.account-detail-list span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: #d9d9d9;
}

.account-summary-actions {
    display: grid;
    gap: 10px;
}

.account-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.account-stat-card {
    padding: 18px;
}

.account-stat-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.account-stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    color: #ffffff;
}

.account-stat-card p {
    margin: 0;
    color: #c8c8c8;
    font-size: 14px;
}

.dashboard-three-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.dashboard-mini-list {
    display: grid;
        gap: 12px;
}

.dashboard-mini-item {
    display: flex;
        justify-content: space-between;
        gap: 12px;
        align-items: start;
        padding: 14px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.02);
}

.dashboard-mini-item strong {
    display: block;
        margin: 0 0 6px;
        font-size: 15px;
        line-height: 1.2;
}

.dashboard-mini-item p {
    margin: 0;
        color: #c7c7c7;
        font-size: 13px;
        line-height: 1.4;
}

.dashboard-mini-item span {
    display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 28px;
        padding: 0 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
        font-size: 12px;
        white-space: nowrap;
}

.preference-tag-grid {
    display: flex;
        flex-wrap: wrap;
        gap: 10px;
}

.preference-tag {
    display: inline-flex;
        align-items: center;
        min-height: 36px;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: #ffffff;
        font-size: 13px;
}

.gallery-grid {
    display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
}

.gallery-tile {
    aspect-ratio: 1 / 1;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border);
        position: relative;
        overflow: hidden;
}

.track-list {
    display: grid;
        gap: 14px;
}

.track-item {
    display: grid;
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 16px;
        align-items: center;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 14px;
        background: rgba(255, 255, 255, 0.02);
}

.track-item-actions {
    margin-left: auto;
        flex: 0 0 auto;
        display: flex;
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: center;
}

.track-action-button {
    background: transparent;
        padding: 0;
        min-width: 0;
        min-height: 0;
        line-height: 1;
        opacity: 0.9;
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 999px;
        color: #ffffff;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        transition: transform 0.2s ease, background 0.2s ease;
}

.track-thumb {
    aspect-ratio: 1 / 1;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        position: relative;
        overflow: hidden;
}

.track-meta h3 {
    margin: 0 0 6px;
        font-size: 20px;
        line-height: 1.1;
        font-weight: 400;
}

.track-meta p {
    margin: 0;
        color: var(--muted);
        font-size: 14px;
}

.media-play-button {
    position: absolute;
        inset: 0;
        border: 0;
        background: rgba(0, 0, 0, 0.28);
        color: #ffffff;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        transition: background 0.2s ease;
}

.media-play-button:hover,
.media-play-button:focus-visible,
.media-play-button.is-playing {
    background: rgba(0, 0, 0, 0.45);
}

.media-play-button:disabled {
    cursor: default;
        opacity: 0.55;
}

.media-play-button-icon {
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
}

.dashboard-hero {
    position: relative;
        padding: 0 0 32px;
}

.dashboard-cover {
    height: 460px;
        background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
        border-bottom: 1px solid var(--border);
        position: relative;
        z-index: 0;
}

.dashboard-cover-inner {
    height: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        padding-top: 18px;
}

.dashboard-cover-edit-button {
    display: inline-flex;
        align-items: center;
        min-height: 36px;
        padding: 0.65rem 0.9rem;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.28);
        color: var(--text);
        font-size: 13px;
        line-height: 1;
        backdrop-filter: blur(6px);
        transition: background 0.2s ease, border-color 0.2s ease;
}

.dashboard-cover-edit-button:hover {
    background: rgba(0, 0, 0, 0.42);
        border-color: rgba(255, 255, 255, 0.26);
}

.dashboard-hero-inner {
    position: relative;
        z-index: 1;
        margin-top: -56px;
}

.stat-pill {
    display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
        color: var(--muted);
        font-size: 12px;
        white-space: nowrap;
}

.current-spin-card {
    border: 1px solid var(--border);
        border-radius: 14px;
        padding: 14px;
        margin-bottom: 16px;
        background: rgba(255, 255, 255, 0.02);
}

.current-spin-card strong {
    display: block;
        margin-bottom: 6px;
        font-weight: 500;
}

.current-spin-card span {
    color: var(--muted);
        font-size: 14px;
}

.track-cover-upload-wrap {
    margin-top: 20px;
        display: grid;
        gap: 10px;
        justify-items: center;
}

.dashboard-empty-state {
    padding: 20px;
        border: 1px dashed rgba(255, 255, 255, 0.18);
        border-radius: 16px;
}

.dashboard-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 1000;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.dashboard-modal.is-open {
    display: flex;
}

.dashboard-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
}

.dashboard-modal-dialog,
.dashboard-modal-dialog-lg,
.dashboard-modal-dialog-form {
    position: relative;
    z-index: 1;
    width: min(100%, 720px);
    margin: 0 auto;
    padding: 20px;
    border-radius: 20px;
    background: #414141;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 64px rgba(0,0,0,0.45);
    max-width: 100%;
}

.dashboard-modal-dialog-lg,
.dashboard-modal-dialog-form {
    width: min(100%, 920px);
}

.dashboard-modal-dialog-form {
    max-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dashboard-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-size: 24px;
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.dashboard-modal-header {
    margin-bottom: 20px;
    padding-right: 48px;
}

.dashboard-modal-header h2 {
    margin: 0 0 8px;
}

.dashboard-modal-header p {
    margin: 0;
    color: #c8c8c8;
}

.dashboard-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.dashboard-modal-body {
    display: grid;
    gap: 20px;
}

.dashboard-modal-body-form {
    overflow-y: auto;
    min-height: 0;
    padding-right: 0;
}

.dashboard-modal-footer {
    position: sticky;
    bottom: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 4px;
    padding-top: 16px;
    background: #414141;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.dashboard-modal-footer .button {
    width: 100%;
    min-width: 0;
}

.track-upload-modal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.track-upload-modal-media,
.track-upload-modal-form {
    display: grid;
    gap: 16px;
}

.dashboard-profile-card {
    display: grid;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    background: #414141;
    border: 1px solid var(--border);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.dashboard-profile-readonly {
    display: grid;
    gap: 18px;
}

.dashboard-profile-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.dashboard-profile-avatar-wrap {
    display: flex;
    justify-content: center;
}

.dashboard-profile-avatar {
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dashboard-profile-copy {
    min-width: 0;
    text-align: center;
}

.dashboard-profile-title {
    margin: 0 0 8px;
    font-size: clamp(1.9rem, 6vw, 2.5rem);
    line-height: 1;
    font-weight: 400;
}

.dashboard-profile-name {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.dashboard-profile-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.dashboard-profile-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    line-height: 1.2;
    color: #d9d9d9;
}

.dashboard-profile-meta a {
    color: inherit;
    text-decoration: none;
}

.dashboard-profile-bio {
    display: grid;
    gap: 8px;
    padding-top: 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.dashboard-profile-bio h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 400;
}

.dashboard-profile-bio p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.dashboard-profile-actions,
.dashboard-profile-edit-actions {
    display: grid;
    gap: 10px;
}

.dashboard-profile-actions .button,
.dashboard-profile-edit-actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.dashboard-profile-edit-form {
    display: none;
    gap: 18px;
}

.dashboard-profile-card.is-editing .dashboard-profile-readonly {
    display: none;
}

.dashboard-profile-card.is-editing .dashboard-profile-edit-form {
    display: grid;
}

.dashboard-profile-edit-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.dashboard-profile-edit-media,
.dashboard-profile-edit-column {
    display: grid;
    gap: 16px;
}

.dashboard-profile-edit-preview {
    margin: 0 auto;
    width: 100%;
    max-width: 170px;
    aspect-ratio: 1 / 1;
}

.dashboard-profile-edit-bio {
    margin-top: 0;
}

.dashboard-stat-grid {
    margin-top: 24px;
}

.dashboard-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.dashboard-main-feed {
    display: grid;
    gap: 20px;
}

.dashboard-lists-workspace,
.dashboard-sidebar-queue {
    min-width: 0;
}

.dashboard-panel-subtitle {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.dashboard-list-create-form {
    margin-bottom: 18px;
}

.dashboard-list-create-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}

.dashboard-list-create-action .button {
    width: 100%;
}

.dashboard-list-grid {
    display: grid;
    gap: 16px;
}

.dashboard-list-card {
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.dashboard-list-card.is-pinned {
    border-color: rgba(255, 245, 0, 0.24);
    background: rgba(255, 245, 0, 0.03);
}

.dashboard-list-card-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
}

.dashboard-list-card-header h3 {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.1;
    font-weight: 400;
}

.dashboard-list-card-header p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.dashboard-list-title-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.dashboard-list-pin {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 245, 0, 0.12);
    color: var(--accent);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-list-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dashboard-inline-form {
    margin: 0;
}

.dashboard-list-action-button {
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    cursor: pointer;
}

.dashboard-list-action-button:hover,
.dashboard-list-action-button:focus-visible {
    background: rgba(255, 255, 255, 0.08);
}

.dashboard-list-action-button.is-danger {
    color: #ffb3b3;
}

.dashboard-list-action-button:disabled {
    opacity: 0.4;
    cursor: default;
}

.dashboard-list-rename-form {
    display: none;
}

.dashboard-list-card.is-renaming .dashboard-list-rename-form {
    display: block;
}

.dashboard-list-rename-grid {
    display: grid;
    gap: 12px;
}

.dashboard-list-rename-actions {
    display: grid;
    gap: 10px;
}

.dashboard-list-body {
    min-width: 0;
}

.dashboard-list-item-stack,
.dashboard-sidebar-queue-list {
    display: grid;
    gap: 12px;
}

.dashboard-list-item,
.dashboard-sidebar-queue-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.dashboard-list-item-thumb,
.dashboard-sidebar-queue-thumb {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dashboard-list-item-copy,
.dashboard-sidebar-queue-copy {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.dashboard-list-item-copy strong,
.dashboard-sidebar-queue-copy strong {
    font-size: 15px;
    line-height: 1.2;
}

.dashboard-list-item-copy p,
.dashboard-sidebar-queue-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.dashboard-list-item-meta,
.dashboard-sidebar-queue-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dashboard-list-item-actions,
.dashboard-sidebar-queue-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.dashboard-list-item {
    grid-template-columns: 28px 56px minmax(0, 1fr);
    gap: 12px;
}

.dashboard-list-item-handle {
    width: 28px;
    min-width: 28px;
    height: 56px;
    min-height: 56px;
    align-self: center;
}

.dashboard-list-item.is-dragging {
    opacity: 0.55;
}

.dashboard-list-item-stack.is-sorting .dashboard-list-item {
    transition: none;
}

@media (min-width: 768px) {
    .dashboard-profile-summary {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 20px;
    }

    .dashboard-profile-avatar-wrap {
        justify-content: flex-start;
    }

    .dashboard-profile-avatar {
        width: 112px;
        height: 112px;
        border-radius: 999px;
    }

    .dashboard-profile-copy {
        text-align: left;
    }

    .dashboard-profile-title {
        font-size: clamp(2.2rem, 4vw, 2.9rem);
    }

    .dashboard-profile-meta {
        justify-content: flex-start;
    }

    .dashboard-profile-meta span {
        min-height: 32px;
        padding: 6px 10px;
        font-size: 13px;
    }

    .dashboard-profile-bio {
        gap: 10px;
        padding-top: 0;
        border-top: 0;
    }

    .dashboard-profile-bio h3 {
        font-size: 22px;
    }

    .dashboard-profile-bio p {
        font-size: 15px;
    }

    .dashboard-profile-actions,
    .dashboard-profile-edit-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .dashboard-profile-actions .button,
    .dashboard-profile-edit-actions .button {
        width: auto;
    }

    .dashboard-profile-edit-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 20px;
    }

    .dashboard-profile-edit-bio {
        grid-column: 1 / -1;
    }

    .dashboard-list-create-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .dashboard-list-create-action {
        grid-column: 1 / -1;
    }

    .dashboard-list-create-action .button {
        width: auto;
    }

    .dashboard-list-rename-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-list-item,
    .dashboard-sidebar-queue-item {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 14px;
    }

    .dashboard-list-item-thumb,
    .dashboard-sidebar-queue-thumb {
        width: 64px;
        height: 64px;
    }

    .dashboard-list-item {
        grid-template-columns: 28px 64px minmax(0, 1fr);
        gap: 14px;
    }

    .dashboard-list-item-handle {
        height: 64px;
        min-height: 64px;
    }
    .dashboard-panel {
        padding: 24px;
    }

    .dashboard-panel-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }

    .dashboard-panel-header h2 {
        font-size: 28px;
    }

    .dashboard-modal {
        padding: 24px;
    }

    .dashboard-modal-dialog,
    .dashboard-modal-dialog-lg,
    .dashboard-modal-dialog-form {
        padding: 24px;
        border-radius: 24px;
    }

    .dashboard-modal-dialog-form {
        max-height: calc(100vh - 48px);
    }

    .dashboard-modal-body-form {
        padding-right: 4px;
    }

    .dashboard-modal-footer {
        display: flex;
        justify-content: flex-end;
        gap: 12px;
    }

    .dashboard-modal-footer .button {
        width: auto;
        min-width: 160px;
    }

    .account-summary-main {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 20px;
    }

    .account-summary-avatar {
        width: 120px;
        height: 120px;
    }

    .account-summary-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .upload-block-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .upload-dropzone {
        min-height: 200px;
    }

    .upload-cover-preview,
    .edit-track-cover,
    .onboarding-media-preview {
        max-width: 170px;
    }

}

@media (min-width: 1024px) {
    .dashboard-profile-card {
        padding: 24px;
    }

    .dashboard-profile-readonly {
        grid-template-columns: 1.2fr minmax(0, 1fr) 220px;
        gap: 24px;
        align-items: start;
    }

    .dashboard-profile-actions {
        grid-template-columns: minmax(0, 1fr);
    }

    .dashboard-profile-edit-layout {
        grid-template-columns: 240px minmax(0, 1fr) minmax(0, 1fr);
        gap: 24px;
    }

    .dashboard-profile-edit-bio {
        grid-column: 1 / -1;
    }

    .dashboard-main-grid {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 24px;
    }

    .dashboard-list-create-grid {
        grid-template-columns: 1.2fr 1fr auto;
        align-items: end;
    }

    .dashboard-list-create-action {
        grid-column: auto;
    }

    .dashboard-list-rename-grid {
        grid-template-columns: 1.2fr 1fr auto;
        align-items: end;
    }

    .dashboard-list-rename-actions {
        grid-template-columns: repeat(2, auto);
        justify-content: end;
    }
    .dashboard-modal-dialog,
    .dashboard-modal-dialog-lg,
    .dashboard-modal-dialog-form {
        padding: 28px;
    }

    .dashboard-modal-dialog-form {
        max-height: 90vh;
    }

    .track-upload-modal-layout {
        grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
        gap: 24px;
    }

    .upload-dropzone {
        min-height: 220px;
    }

    .upload-cover-preview,
    .edit-track-cover,
    .onboarding-media-preview {
        max-width: 180px;
    }

    .dashboard-two-col,
    .dashboard-two-col-artist {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 24px;
    }

    .account-summary-card {
        margin-bottom: 24px;
    }

    .account-summary-grid {
        grid-template-columns: minmax(0, 1fr) 220px;
        gap: 24px;
    }

    .account-stat-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
        margin-bottom: 24px;
    }

    .account-stat-card {
        padding: 22px;
    }

    .account-stat-card strong {
        font-size: 34px;
    }

    .dashboard-three-col {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        margin-bottom: 24px;
    }

}