﻿.cm-drop {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    border: 1px dashed #d1d5db;
    padding: .75rem;
    border-radius: .5rem;
    background: #fafafa;
}

.cm-hint {
    color: #6b7280;
    font-size: .85rem;
}

.cm-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px,1fr));
    gap: .5rem;
    margin-top: .5rem;
}

.cm-thumb {
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    overflow: hidden;
    background: #fff;
}

    .cm-thumb img {
        width: 100%;
        height: 84px;
        object-fit: cover;
        display: block;
    }

.cm-caption {
    font-size: .75rem;
    color: #6b7280;
    padding: .25rem .35rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cm-error {
    color: #b91c1c;
    font-size: .9rem;
    margin-top: .5rem;
}

.cm-stars {
    display: inline-flex;
    gap: .25rem;
}

.cm-star {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    color: #9ca3af;
}

    .cm-star.active {
        color: #f59e0b;
    }
