.odos-bulk-art-toolbar {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
    align-items: center;
    margin: 0 0 1rem;
    padding: 1rem 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(224, 178, 83, 0.22);
    background: rgba(255,255,255,0.02);
}

.odos-bulk-art-toolbar__left h4 {
    margin: 0.15rem 0 0.35rem;
}

.odos-bulk-art-toolbar__left .muted {
    margin: 0;
    color: rgba(255,255,255,0.72);
}

.odos-bulk-art-toolbar__right {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.odos-bulk-art-count {
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.18);
}

.odos-asset-tile {
    position: relative;
}

.odos-asset-select {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    background: rgba(8, 12, 20, 0.88);
    border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
}

.odos-asset-select__box {
    margin: 0;
}

.odos-asset-select__chip {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.92);
}

.odos-asset-tile.is-selected {
    border-color: rgba(127, 190, 134, 0.65) !important;
    box-shadow: 0 0 0 2px rgba(127, 190, 134, 0.18), 0 10px 28px rgba(0,0,0,0.26);
}

.odos-bulk-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(5, 8, 12, 0.78);
}

.odos-bulk-modal {
    width: min(860px, 100%);
    max-height: calc(100vh - 2rem);
    overflow: auto;
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(224, 178, 83, 0.28);
    background:
        radial-gradient(circle at top left, rgba(224,178,83,0.08), transparent 35%),
        linear-gradient(180deg, rgba(15,21,34,0.98), rgba(9,14,24,0.98));
    padding: 1.15rem 1.15rem 1.25rem;
    box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

.odos-bulk-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.9rem;
    border: 0;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.odos-bulk-modal h3 {
    margin-top: 0.15rem;
}

.odos-bulk-modal__callout {
    margin: 0.9rem 0 1rem;
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    border: 1px solid rgba(127, 190, 134, 0.22);
    background: rgba(10, 26, 16, 0.4);
}

.odos-bulk-modal__callout strong {
    color: #d4f2d8;
}

.odos-bulk-modal__callout ul {
    margin: 0.45rem 0 0 1rem;
    color: rgba(255,255,255,0.82);
}

.odos-bulk-modal__meta {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.odos-bulk-modal__pill {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
}

.odos-field {
    display: grid;
    gap: 0.35rem;
    margin: 0 0 0.95rem;
}

.odos-field span {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

.odos-field textarea,
.odos-field input[type="file"] {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.25);
    color: rgba(255,255,255,0.95);
    padding: 0.8rem 0.9rem;
}

.odos-bulk-modal__actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.odos-bulk-progress {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.odos-bulk-progress__bar {
    width: 100%;
    height: 14px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(224,178,83,0.24);
    margin-bottom: 0.55rem;
}

.odos-bulk-progress__bar span {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #6db08b, #e0b253);
    transition: width 0.2s ease;
}

@media (max-width: 980px) {
    .odos-bulk-art-toolbar {
        grid-template-columns: 1fr;
    }

    .odos-bulk-art-toolbar__right {
        justify-content: flex-start;
    }
}
