/*
 * All My Vinyl — Master Stylesheet
 * Version: 1.7.4
 *
 * All amv-* styles consolidated here.
 * Once this plugin is active, remove CSS from Customizer > Additional CSS.
 */


/* ════════════════════════════════════════════
   GRID & CARD (shared across all views)
════════════════════════════════════════════ */

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

.amv-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.amv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.amv-card__link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex: 1;
}

.amv-card__cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #1a1a2e;
}

.amv-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.amv-card:hover .amv-card__cover img {
    transform: scale(1.05);
}

.amv-card__no-cover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    color: #5c6bc0;
    font-size: 3rem;
}

.amv-card__info {
    padding: 0.75rem 0.9rem 0.9rem;
}

.amv-card__artist {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5c6bc0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.amv-card__album {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.amv-card__footer {
    padding: 0.5rem 0.9rem 0.75rem;
    border-top: 1px solid #f0f0f5;
    margin-top: auto;
}

.amv-card__collector {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    font-size: 0.75rem;
    color: #888;
    transition: color 0.15s;
}

.amv-card__collector:hover {
    color: #5c6bc0;
}

.amv-card__collector img {
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.amv-grid-empty {
    text-align: center;
    color: #888;
    padding: 3rem;
}


/* ════════════════════════════════════════════
   COLLECTOR PROFILE VIEW
════════════════════════════════════════════ */

.amv-profile__header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 4.5rem;
    background-color: #d8d8eb;
    padding: 40px;
    border-radius: 20px;
}

/* Two-column layout when a Featured Album is present.
   Profile info takes ~75%, featured card takes ~25%. */
.amv-profile__header--has-featured {
    align-items: flex-start;
}

.amv-profile__main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1 1 70%;
    min-width: 0;
}

.amv-profile__header:not(.amv-profile__header--has-featured) .amv-profile__main {
    flex: 1 1 100%;
}

/* ── Featured Album card ──────────────────────────────────────────────── */

.amv-profile__featured {
    background: #F5F5F7;
    border: 5px solid #fff;
    border-radius: 20px;
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.amv-profile__featured-label {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: #1a1a2e;
    margin: 0 0 0.35rem;
}

.amv-profile__featured-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.amv-profile__featured-link:hover {
    opacity: 0.8;
}

.amv-profile__featured-cover {
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: block;
}

.amv-profile__featured-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.amv-profile__featured-artist {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
}

.amv-profile__featured-title {
    font-size: 0.75rem;
    color: #1a1a2e;
    display: block;
}

.amv-profile__avatar {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
}

.amv-profile__avatar img {
    width: 96px;
    height: 96px;
    max-width: none;
    border: 5px solid #fff;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

.amv-profile__name {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 0.1rem;
}

.amv-profile__location {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin: 0;
}

.amv-profile__bio {
    color: #1a1a2e;
    font-size: 1.0rem;
    margin-top: 0.45rem;
}

.amv-wishlist__title,
.amv-profile__collection-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 0.15rem;
}

.amv-profile__count {
    background: #5c6bc0;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    height: 1.5rem;
    min-width: 1.5rem;
    padding: 0 0.45rem;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.amv-profile__wishlist {
    background: transparent;
    border: 0;
    margin-bottom: 60px;
}

.amv-wishlist__header {
    margin-bottom: 1rem;
}

.amv-wishlist__subtitle {
    font-size: 0.85rem;
    color: #333;
    margin: 0;
}

.amv-wishlist__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.amv-wishlist__item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.amv-wishlist__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.amv-wishlist__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.amv-wishlist__cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #1a1a2e;
}

.amv-wishlist__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.amv-wishlist__item:hover .amv-wishlist__cover img {
    transform: scale(1.05);
}

.amv-wishlist__no-cover {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    color: #5c6bc0;
    font-size: 3rem;
}

.amv-wishlist__info {
    padding: 0.75rem 0.9rem 0.9rem;
}

.amv-wishlist__album-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.amv-wishlist__artist {
    font-size: 0.75rem;
    font-weight: 600;
    color: #5c6bc0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.amv-wishlist__footer {
    padding: 0.5rem 0.9rem 0.75rem;
    border-top: 1px solid #f0f0f5;
    margin-top: auto;
}

.amv-wishlist__buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: var(--accent, #1a1a2e);
    color: var(--base-3, #fff);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.5s ease 0s;
}

.amv-wishlist__buy-btn:hover {
    opacity: 0.85;
    color: var(--base-3, #fff);
}

.amv-profile__collection-header {
    margin-bottom: 1.5rem;
}


/* ════════════════════════════════════════════
   META BOX FORMS
════════════════════════════════════════════ */

.rwmb-field {
    display: block !important;
}

.rwmb-label {
    margin-bottom: 5px;
    margin-top: 0;
    display: block;
    width: 100% !important;
}

.rwmb-input {
    width: 100% !important;
    margin-bottom: 30px;
}

p.description {
    margin-bottom: 0;
    font-size: 14px;
}


/* ════════════════════════════════════════════
   APC DASHBOARD TABLE
════════════════════════════════════════════ */

/* Column layout — scoped to frontend APC container */
.apc-posts-container .gform-data-grid {
    --col-date:    260px;
    --col-actions: 150px;
}

/* Cover column */
.gform-data-grid__column--cover {
    flex: 0 0 90px !important;
}

/* Hide APC's original Post Status column */
.gform-data-grid__column-1 {
    display: none !important;
}

/* APC's Date column slot repurposed as Artist */
.gform-data-grid__column-2 {
    flex: 0 0 var(--col-date) !important;
    min-width: var(--col-date);
}

/* Custom album_status column */
.gform-data-grid__column--album-status {
    flex: 0 0 130px !important;
    min-width: 130px;
}

/* Actions column */
.gform-data-grid__column-3 {
    flex: 0 0 var(--col-actions) !important;
    min-width: var(--col-actions);
}

/* Square album cover thumbnail */
.amv-apc-cover {
    width: 72px;
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amv-apc-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Empty cover state — inherits base styles, centred dash placeholder */
.amv-apc-cover--empty {
    color: #9fa8da;
    font-size: 1.2rem;
}

/* Live search bar */
.amv-apc-live-search {
    margin-bottom: 1rem;
}

.amv-apc-live-search__label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.amv-apc-live-search__input {
    width: 100%;
    max-width: 420px;
    padding: 0.65rem 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.amv-apc-live-search__input:focus {
    outline: 2px solid #1d2327;
    border-color: #1d2327;
    outline-offset: 0;
}

/* Delete button — matches APC's existing action button style */
.amv-apc-delete {
    background: transparent !important;
    color: inherit;
}

/* Shared hover for all action buttons */
.gform-data-grid__column-3 .gform-data-grid__action:hover {
    background: #f0f1fa !important;
    color: #1d2327 !important;
}

/* Subtle red hint on delete button hover only */
.amv-apc-delete:hover {
    color: #b42318 !important;
}

/* Keep action buttons on one row, no extra spacing */
.gform-data-grid__column-3 .gform-text {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.gform-data-grid__column-3 .gform-data-grid__action {
    margin: 0 !important;
}

/* Delete confirmation modal */
.amv-delete-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
}

.amv-delete-modal--open {
    display: block;
}

.amv-delete-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.amv-delete-modal__dialog {
    font-size: 18px;
    position: relative;
    max-width: 420px;
    width: calc(100% - 32px);
    margin: 12vh auto 0;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.amv-delete-modal__dialog h2 {
    font-size: 28px;
    margin-top: 0;
}

.amv-delete-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.amv-delete-modal__cancel,
.amv-delete-modal__confirm {
    border: 0;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
}

.amv-delete-modal__cancel:focus-visible,
.amv-delete-modal__confirm:focus-visible {
    outline: 2px solid #1d2327;
    outline-offset: 2px;
}

.amv-delete-modal__cancel {
    background: #000;
    color: #fff;
}

.amv-delete-modal__confirm {
    background: #b42318;
    color: #fff;
}

.amv-delete-modal__confirm:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}


/* ════════════════════════════════════════════
   WELCOME MESSAGE
════════════════════════════════════════════ */

.amv-welcome {
    margin-bottom: 2rem;
}

.amv-welcome__greeting {
    font-size: 3.20rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 1.5rem;
}

.amv-welcome__subline {
    font-size: 1.0rem;
    color: #333;
    margin: 0;
}


/* ════════════════════════════════════════════
   EMPTY STATE (APC dashboard + Collector page)
════════════════════════════════════════════ */

.amv-empty-state {
    padding: 2rem 1rem;
    text-align: center;
}

.amv-empty-state__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent, #1a1a2e);
    color: var(--base-3, #fff);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.5s ease 0s;
}

.amv-empty-state__link:hover {
    opacity: 0.85;
    color: var(--base-3, #fff);
}


/* ════════════════════════════════════════════
   ACTIVITY STREAM
════════════════════════════════════════════ */

.amv-activity {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.amv-activity__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.amv-activity__avatar img {
    border: 5px solid #fff;
    border-radius: 50%;
    display: block;
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.amv-activity__content {
    flex: 1;
}

.amv-activity__text {
    margin: 0 0 0.2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.amv-activity__user {
    font-weight: 700;
    text-decoration: none;
    color: var(--accent, #1a1a2e);
}

.amv-activity__user:hover {
    text-decoration: underline;
}

.amv-activity__album {
    font-weight: 600;
    text-decoration: none;
    color: var(--accent, #1a1a2e);
}

.amv-activity__album:hover {
    text-decoration: underline;
}

.amv-activity__artist {
    color: #444;
}

.amv-activity__status--collection {
    color: #2e7d32;
    font-weight: 600;
}

.amv-activity__status--wishlist {
    color: #b42318;
    font-weight: 600;
}

.amv-activity__date {
    font-size: 0.8rem;
    color: #888;
}

.amv-activity__pagination {
    display: flex;
    gap: 0.4rem;
    margin-top: 1rem;
}

.amv-activity__page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 6px;
    background: #f0f1fa;
    color: var(--accent, #1a1a2e);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.amv-activity__page--active {
    background-color: var(--accent, #1a1a2e);
    color: var(--base-3, #fff);
    pointer-events: none;
}


.amv-wishlist__buy-btn {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 1.2rem;
}

.amv-grid {
    margin-top: 1.5rem;
}

/* ════════════════════════════════════════════
   MUSICHOARDERS COVER ART BUTTON
════════════════════════════════════════════ */

/* Inline layout — button sits to the left of the URL input on the same row.
   Applies to field_4_3 (submit-album) and field_9_3 uses the same structure
   on edit-album via the same amv-submit.js injection. */
#field_4_3 .ginput_container,
#field_9_3 .ginput_container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 0.75rem;
}

#field_4_3 .ginput_container input[name="input_3"],
#field_9_3 .ginput_container input[name="input_3"] {
    flex: 1;
    min-width: 0;
    margin-bottom: 0 !important;
}

.amv-cover-art-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    white-space: nowrap;
    background-color: var(--accent, #1a1a2e);
    color: var(--base-3, #fff);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.5s ease 0s;
    text-decoration: none;
}

.amv-cover-art-btn:hover {
    opacity: 0.85;
    color: var(--base-3, #fff);
}


/* ════════════════════════════════════════════
   ALBUM STAR RATING
════════════════════════════════════════════ */

.album-stars {
    color: #ffb400;
    font-size: 1.5rem;
    letter-spacing: 2px;
}


/* ════════════════════════════════════════════
   TOP 5
════════════════════════════════════════════ */

.amv-top5 {
    background-color: rgba(216, 216, 235, 0.43);
    border-radius: 20px;
    padding: 20px;
    margin-top: 20px;
}

.amv-top5__heading {
    margin-top: 0;
    margin-bottom: 1rem;
}

.amv-top5__grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.amv-top5__item {
    flex: 0 0 calc(19% - 0.8rem);
}

.amv-top5__link {
    text-decoration: none;
    color: var(--accent, #1a1a2e);
    display: block;
}

.amv-top5__cover {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
    margin-bottom: 0.5rem;
}

.amv-top5__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

.amv-top5__link:hover .amv-top5__cover img {
    opacity: 0.85;
}

.amv-top5__cover--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9fa8da;
    font-size: 1.5rem;
}

.amv-top5__artist {
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.amv-top5__title {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ════════════════════════════════════════════
   MOST ACTIVE COLLECTORS
════════════════════════════════════════════ */

.amv-most-active {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.amv-most-active__heading {
    display: none;
}

.amv-most-active__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.amv-most-active__avatar img {
    border-radius: 50%;
    display: block;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.amv-most-active__info {
    flex: 1;
}

.amv-most-active__name {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent, #1a1a2e);
    text-decoration: none;
    margin-bottom: 0.15rem;
}

.amv-most-active__name:hover {
    text-decoration: underline;
}

.amv-most-active__location {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 0.15rem;
}

.amv-most-active__count {
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    margin: 0;
}


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

@media (max-width: 768px) {
    .amv-profile__header {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        margin-bottom: 2.5rem;
    }

    .amv-profile__avatar img {
        width: 80px;
        height: 80px;
    }

    .amv-profile__name {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .amv-grid-title {
        font-size: 1.5rem;
    }

    .amv-profile__header {
        padding: 1.5rem;
    }

    .amv-profile__avatar img {
        width: 64px;
        height: 64px;
    }

    .amv-profile__name {
        font-size: 1.4rem;
    }
}


/* ════════════════════════════════════════════
   COMMUNITY LEADERBOARD
════════════════════════════════════════════ */

.amv-leaderboard-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.amv-leaderboard__search {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.amv-leaderboard__search:focus {
    border-color: var(--accent, #1a1a2e);
}

.amv-leaderboard__empty {
    color: #666;
    font-size: 1rem;
}

.amv-leaderboard {
    list-style: none;
    margin: 0;
    padding: 0;
}

.amv-leaderboard__item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-bottom: 0.75rem;
}

.amv-leaderboard__item:last-child {
    margin-bottom: 0;
}

/* Large rank number as design anchor */
.amv-leaderboard__rank {
    font-size: 4rem;
    font-weight: 900;
    color: #7a7a99;
    min-width: 4.5rem;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
    opacity: 0.15;
}

.amv-leaderboard__item:nth-child(1) .amv-leaderboard__rank,
.amv-leaderboard__item:nth-child(2) .amv-leaderboard__rank,
.amv-leaderboard__item:nth-child(3) .amv-leaderboard__rank {
    opacity: 1;
}

.amv-leaderboard__cover-link {
    flex-shrink: 0;
}

.amv-leaderboard__cover {
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.amv-leaderboard__cover--empty {
    background: #e0e0e0;
    width: 78px;
    height: 78px;
    border-radius: 4px;
}

.amv-leaderboard__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
    min-width: 0;
}

.amv-leaderboard__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.amv-leaderboard__title:hover {
    text-decoration: underline;
}

.amv-leaderboard__artist {
    font-size: 0.85rem;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Collector avatar strip */
.amv-leaderboard__collectors {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.25rem;
    flex-wrap: wrap;
}

.amv-leaderboard__collector-avatar {
    display: inline-block;
    border-radius: 50%;
    overflow: hidden;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    border: 2px solid #fff;
    margin-right: -6px;
    transition: transform 0.15s ease;
}

.amv-leaderboard__collector-avatar:last-of-type {
    margin-right: 0;
}

.amv-leaderboard__collector-avatar:hover {
    transform: scale(1.15);
    z-index: 1;
    position: relative;
}

.amv-leaderboard__collector-avatar img {
    width: 24px;
    height: 24px;
    display: block;
    border-radius: 50%;
}

.amv-leaderboard__collector-count {
    font-size: 0.75rem;
    color: #888;
    margin-left: 0.5rem;
}

/* Vote column */
.amv-leaderboard__vote {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
    min-width: 3.5rem;
}

.amv-leaderboard__count {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
}

.amv-leaderboard__vote-btn {
    background: none;
    border: 2px solid #d0d0d0;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #bbb;
    transition: all 0.2s ease;
    padding: 0;
}

.amv-leaderboard__vote-btn:hover {
    border-color: var(--accent, #1a1a2e);
    color: var(--accent, #1a1a2e);
}

.amv-leaderboard__vote-btn--voted {
    background: var(--accent, #1a1a2e);
    border-color: var(--accent, #1a1a2e);
    color: #fff;
}

.amv-leaderboard__vote-btn--voted:hover {
    opacity: 0.85;
    color: #fff;
}


