/* /Components/DropCover.razor.rz.scp.css */
.checkerboard-bg[b-h0wia8zlkf] {
    background-color: #fff;
    background-image:
        linear-gradient(45deg, #e0e0e0 25%, transparent 25%),
        linear-gradient(-45deg, #e0e0e0 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #e0e0e0 75%),
        linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
    background-size: 24px 24px;
    background-position: 0 0, 0 12px, 12px -12px, -12px 0px;
}
/* /Components/PreviewModal.razor.rz.scp.css */
.icon-btn:hover:enabled[b-xruab1ww2f] {
    background: #333;
}

.icon-btn:disabled[b-xruab1ww2f] {
    opacity: 0.4;
    cursor: not-allowed;
}
/* /Components/ThumbnailCard.razor.rz.scp.css */
/* サムネイル読み込み完了時のアニメーション */
.thumbnail-loaded[b-y4yp1edxdh] {
    animation: fadeIn-b-y4yp1edxdh 0.5s ease-in-out;
}

@keyframes fadeIn-b-y4yp1edxdh {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.page-error[b-y4yp1edxdh] {
    position: relative;
    background: #fef2f2;
    border: 2px solid #fca5a5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 128px;
    color: #dc2626;
    font-size: 12px;
    text-align: center;
    padding: 8px;
}

/* ファイル情報表示スタイル */
.file-info[b-y4yp1edxdh] {
    margin-top: 4px;
    text-align: center;
    width: 100%;
    max-width: 96px;
    /* サムネイル幅(w-24 = 96px)に合わせる */
    position: relative;
}

.file-name[b-y4yp1edxdh] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
}

.page-number[b-y4yp1edxdh] {
    color: #6b7280;
    font-weight: 400;
    line-height: 1.1;
    margin-top: 1px;
}


/* Sortable.js styles */
.sortable-item[b-y4yp1edxdh] {
    transition: all 0.3s ease;
}

.sortable-item:hover[b-y4yp1edxdh] {
    transform: scale(1.05);
}

/* サムネイル全体はスクロール許可 */
.sortable-item-container[b-y4yp1edxdh] {
    touch-action: pan-y !important;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.sortable-item-container:hover[b-y4yp1edxdh] {
    z-index: 10;
}

.drag-handle:hover[b-y4yp1edxdh] {
    cursor: move !important;
}
/* /Components/Tooltip.razor.rz.scp.css */
/* 矢印のスタイルはTailwindでの再現が難しい */
.tooltip-arrow[b-3i3khsphu5] {
    position: absolute;
    width: 12px;
    height: 12px;
    background: inherit;
    border: inherit;
    transform: rotate(45deg);
}

.tooltip-popup[data-placement^="top"] .tooltip-arrow[b-3i3khsphu5] {
    bottom: -6px;
    left: 50%;
    margin-left: -6px;
    border-top: none;
    border-left: none;
}

.tooltip-popup[data-placement^="bottom"] .tooltip-arrow[b-3i3khsphu5] {
    top: -6px;
    left: 50%;
    margin-left: -6px;
    border-bottom: none;
    border-right: none;
}

.tooltip-popup[data-placement^="left"] .tooltip-arrow[b-3i3khsphu5] {
    right: -6px;
    top: 50%;
    margin-top: -6px;
    border-left: none;
    border-bottom: none;
}

.tooltip-popup[data-placement^="right"] .tooltip-arrow[b-3i3khsphu5] {
    left: -6px;
    top: 50%;
    margin-top: -6px;
    border-right: none;
    border-top: none;
}
/* /Components/TrimRangeDialog.razor.rz.scp.css */
/* 親オーバーレイのフェード（背景＆ぼかし） */
.dialog-overlay[b-i86gg1wn70] {
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  position: fixed;
  padding: 1rem;
  z-index: 250;
  background-color: rgba(0,0,0,0); /* アニメ開始 */
  backdrop-filter: blur(0);
  animation: overlayFadeIn-b-i86gg1wn70 260ms cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes overlayFadeIn-b-i86gg1wn70 {
  from {
    background-color: rgba(0,0,0,0);
    backdrop-filter: blur(0);
  }
  to {
    background-color: rgba(0,0,0,0.40);
    backdrop-filter: blur(4px);
  }
}

/* ダイアログ本体のふわっとスライド＆フェード */
.dialog-panel[b-i86gg1wn70] {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  will-change: opacity, transform;
  animation: panelEnter-b-i86gg1wn70 320ms cubic-bezier(.2,.8,.2,1) forwards;
}

@keyframes panelEnter-b-i86gg1wn70 {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  60% {
    transform: translateY(-4px) scale(1.002);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 任意：閉じ時に少し縮む演出（コンポーネント破棄時は発動しないので別途クラスで制御する場合のみ） */
.dialog-panel.dialog-leave[b-i86gg1wn70] {
  animation: panelLeave-b-i86gg1wn70 200ms ease-in forwards;
}
@keyframes panelLeave-b-i86gg1wn70 {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(8px) scale(0.98); }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-zdpdkgcm98] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-zdpdkgcm98] {
    flex: 1;
}

.sidebar[b-zdpdkgcm98] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

@media (min-width: 768px) {
    .page[b-zdpdkgcm98] {
        flex-direction: row;
    }

    .sidebar[b-zdpdkgcm98] {
        width: 70px;
        min-width: 70px;
        position: sticky;
        top: 0;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* ハンバーガーボタン本体 */
.btn-trigger[b-3hnp40kz9m] {
    position: relative;
    width: 48px;
    height: 48px;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
}

/* 丸アニメーション */
#nav-hamburger[b-3hnp40kz9m]::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0);
    transition: all .75s;
    z-index: 0;
}

#nav-hamburger.active[b-3hnp40kz9m]::after {
    border: 3px solid #fff;
}

/* ハンバーガーの3本線 */
.btn-trigger span[b-3hnp40kz9m] {
    position: absolute;
    left: 6px;
    width: 36px;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    transition: all .5s;
    box-sizing: border-box;
    z-index: 1;
}

.btn-trigger span:nth-of-type(1)[b-3hnp40kz9m] {
    top: 10px;
}

.btn-trigger span:nth-of-type(2)[b-3hnp40kz9m] {
    top: 22px;
}

.btn-trigger span:nth-of-type(3)[b-3hnp40kz9m] {
    top: 34px;
}

/* アクティブ時のアニメーション */
#nav-hamburger.active span:nth-of-type(1)[b-3hnp40kz9m] {
    transform: translateY(12px) rotate(45deg);
}

#nav-hamburger.active span:nth-of-type(2)[b-3hnp40kz9m] {
    left: 60%;
    opacity: 0;
    animation: nav-hamburger-bar02-b-3hnp40kz9m .8s forwards;
}

@keyframes nav-hamburger-bar02-b-3hnp40kz9m {
    100% {
        height: 0;
    }
}

#nav-hamburger.active span:nth-of-type(3)[b-3hnp40kz9m] {
    transform: translateY(-12px) rotate(-45deg);
}

@media (max-width: 768px) {
    .navmenu-sidebar-bg[b-3hnp40kz9m] {
        background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
    }
}
/* /Pages/EditPage.razor.rz.scp.css */
/* /Pages/Home.razor.rz.scp.css */
.bg-gradient-home[b-8ebwfo5w87] {
    background: linear-gradient(to bottom, #d7dfe9 0%, #e6effb 25%, #dae8fa 50%, #f8f8f8 100%);
}
