.orippo-library {
    --orippo-blue: #173b70;
    --orippo-blue-light: #2f6eb7;
    --orippo-teal: #147d75;
    --orippo-ink: #172033;
    --orippo-muted: #607086;
    --orippo-border: #d7e0e8;
    --orippo-surface: #f5f8fa;
    color: var(--orippo-ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0 auto;
    max-width: 1200px;
    padding: 12px;
}

.orippo-library [hidden] { display: none !important; }
.orippo-library * { box-sizing: border-box; }

.orippo-library__header {
    background: linear-gradient(135deg, var(--orippo-blue), var(--orippo-blue-light));
    border-radius: 16px;
    box-shadow: 0 12px 30px rgb(18 47 82 / 18%);
    color: #fff;
    margin-bottom: 22px;
    padding: 24px;
    position: sticky;
    top: 16px;
    z-index: 20;
}

.admin-bar .orippo-library__header { top: 48px; }
.orippo-library__heading-row { align-items: flex-start; display: flex; gap: 20px; justify-content: space-between; }
.orippo-library__title { color: #fff; font-size: clamp(1.45rem, 3vw, 2rem); line-height: 1.15; margin: 0 0 6px; }
.orippo-library__subtitle { color: #fff; margin: 0; opacity: .9; }
.orippo-library__counter { background: rgb(255 255 255 / 16%); border-radius: 999px; flex: 0 0 auto; margin: 0; padding: 7px 13px; }

.orippo-library__primary-filters,
.orippo-library__advanced-filters {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    margin-top: 20px;
}

.orippo-field { display: block; margin: 0; }
.orippo-field--search { grid-column: span 2; }
.orippo-input,
.orippo-select {
    appearance: none;
    background: #fff;
    border: 1px solid rgb(255 255 255 / 40%);
    border-radius: 9px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 10%);
    color: #172033;
    font: inherit;
    min-height: 46px;
    padding: 10px 13px;
    width: 100%;
}

.orippo-library .orippo-input,
.orippo-library .orippo-select {
    background-color: #fff !important;
    color: #172033 !important;
}

.orippo-library .orippo-input::placeholder {
    color: #607086 !important;
    opacity: 1;
}

.orippo-select { background-image: linear-gradient(45deg, transparent 50%, #52657a 50%), linear-gradient(135deg, #52657a 50%, transparent 50%); background-position: calc(100% - 17px) 20px, calc(100% - 12px) 20px; background-repeat: no-repeat; background-size: 5px 5px; padding-right: 32px; }
.orippo-input:focus,
.orippo-select:focus { box-shadow: 0 0 0 3px rgb(255 255 255 / 35%); outline: 2px solid transparent; }
.orippo-library__filter-actions { margin-top: 10px; text-align: right; }

.orippo-button,
.orippo-link-button {
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.orippo-button { align-items: center; border-radius: 9px; display: inline-flex; justify-content: center; min-height: 42px; padding: 9px 14px; text-decoration: none; }
.orippo-button:focus-visible,
.orippo-link-button:focus-visible { outline: 3px solid #f5b942; outline-offset: 2px; }
.orippo-button:disabled,
.orippo-link-button:disabled { cursor: not-allowed; opacity: .5; }
.orippo-button--filters { background: rgb(255 255 255 / 16%); border: 1px solid rgb(255 255 255 / 35%); color: #fff; }
.orippo-button--filters span { background: #fff; border-radius: 999px; color: var(--orippo-blue); margin-left: 7px; min-width: 23px; padding: 2px 6px; }
.orippo-link-button { background: transparent; color: inherit; padding: 5px; text-decoration: underline; text-underline-offset: 3px; }
.orippo-library__filter-actions .orippo-link-button { color: #fff; }

.orippo-library__notice { background: #fff7df; border-left: 4px solid #d79a16; border-radius: 6px; padding: 12px 15px; }
.orippo-library__bulk-top { margin: 0 0 12px; text-align: right; }
.orippo-library__bulk-top .orippo-link-button { background: var(--orippo-blue); border-radius: 8px; color: #fff; padding: 7px 11px; }
.orippo-library__grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.orippo-song-card {
    background: #e7f2f1;
    border: 1px solid #afd3cf;
    border-radius: 14px;
    box-shadow: 0 7px 20px rgb(22 52 72 / 10%);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.orippo-song-card:hover { box-shadow: 0 12px 28px rgb(22 52 72 / 17%); transform: translateY(-2px); }
.orippo-song-card.is-selected { border-color: var(--orippo-blue-light); box-shadow: 0 0 0 3px rgb(47 110 183 / 25%); }
.orippo-song-card__select { align-items: center; background: rgb(255 255 255 / 55%); cursor: pointer; display: flex; font-size: .82rem; font-weight: 700; gap: 7px; padding: 9px 16px; }
.orippo-song-card__select input { height: 18px; margin: 0; width: 18px; }
.orippo-song-card__body { flex: 1 1 auto; padding: 18px 18px 12px; }
.orippo-song-card__body h3 { color: var(--orippo-ink); font-size: 1.12rem; line-height: 1.3; margin: 10px 0 4px; }
.orippo-song-card__badges { display: flex; flex-wrap: wrap; gap: 5px; }
.orippo-badge { background: #fff; border: 1px solid #bdd4d2; border-radius: 999px; color: var(--orippo-blue); font-size: .7rem; font-weight: 800; letter-spacing: .03em; padding: 3px 8px; text-transform: uppercase; }
.orippo-song-card__subtitle { color: var(--orippo-muted); font-size: .86rem; font-style: italic; margin: 0 0 9px; }
.orippo-song-card__composer { color: #34465a; font-size: .9rem; font-weight: 700; margin: 0; }
.orippo-song-card__media { border-top: 1px solid #c5ddda; display: flex; flex-wrap: wrap; gap: 8px; padding: 13px 18px 17px; }
.orippo-button--view { background: var(--orippo-blue); color: #fff; }
.orippo-button--download { background: var(--orippo-teal); color: #fff; }
.orippo-button--secondary { background: #e8eef4; color: var(--orippo-ink); }
.orippo-song-card__audio { flex: 1 0 100%; height: 34px; margin-top: 5px; width: 100%; }
.orippo-song-card__unavailable { color: var(--orippo-muted); font-size: .85rem; font-style: italic; }

.orippo-library__empty { background: var(--orippo-surface); border: 1px dashed var(--orippo-border); border-radius: 12px; margin-top: 18px; padding: 42px 20px; text-align: center; }
.orippo-library__empty strong,
.orippo-library__empty span { display: block; }
.orippo-library__empty span { color: var(--orippo-muted); margin-top: 5px; }

.orippo-selection-bar { align-items: center; background: #fff; border: 1px solid var(--orippo-border); border-radius: 13px; bottom: 16px; box-shadow: 0 12px 34px rgb(10 31 52 / 24%); display: flex; gap: 18px; justify-content: space-between; left: 50%; max-width: min(760px, calc(100vw - 28px)); padding: 11px 14px; position: fixed; transform: translateX(-50%); width: 100%; z-index: 80; }
.orippo-selection-bar p { margin: 0; }
.orippo-selection-bar__actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }

.orippo-viewer { inset: 0; position: fixed; z-index: 100000; }
.orippo-viewer__backdrop { background: rgb(6 16 29 / 78%); inset: 0; position: absolute; }
.orippo-viewer__dialog { background: #fff; border-radius: 12px; display: flex; flex-direction: column; inset: 3vh 3vw; overflow: hidden; position: absolute; }
.orippo-viewer__header { align-items: center; border-bottom: 1px solid var(--orippo-border); display: flex; gap: 15px; justify-content: space-between; padding: 10px 14px; }
.orippo-viewer__header h3 { color: var(--orippo-ink); font-size: 1rem; margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.orippo-viewer__header > div { align-items: center; display: flex; flex: 0 0 auto; gap: 10px; }
.orippo-viewer__header .orippo-link-button { color: var(--orippo-blue); font-size: .85rem; }
.orippo-viewer__close { background: transparent; border: 0; color: var(--orippo-ink); cursor: pointer; font-size: 2rem; line-height: 1; padding: 0 4px; }
.orippo-viewer__frame { border: 0; flex: 1 1 auto; width: 100%; }
.orippo-viewer-open { overflow: hidden; }

.orippo-library-preview-block { background: #f5f8fa; border: 2px dashed #c4d0dc; border-radius: 9px; display: grid; gap: 4px; padding: 24px; text-align: center; }
.orippo-library-preview-icon { font-size: 1.7rem; }

@media (max-width: 782px) {
    .orippo-library__header { position: static; }
    .orippo-library__heading-row { display: block; }
    .orippo-library__counter { display: inline-block; margin-top: 15px; }
    .orippo-field--search { grid-column: auto; }
    .orippo-selection-bar { align-items: stretch; display: block; }
    .orippo-selection-bar p { margin-bottom: 8px; text-align: center; }
    .orippo-selection-bar__actions { justify-content: center; }
    .orippo-viewer__dialog { inset: 0; border-radius: 0; }
}

@media (max-width: 480px) {
    .orippo-library { padding: 5px; }
    .orippo-library__header { border-radius: 11px; padding: 18px 14px; }
    .orippo-library__primary-filters,
    .orippo-library__advanced-filters { grid-template-columns: 1fr; }
    .orippo-library__grid { grid-template-columns: 1fr; }
    .orippo-selection-bar__actions .orippo-button { flex: 1 1 45%; }
    .orippo-viewer__header .orippo-link-button { display: none; }
}
