/* カレンダー全体の余白 */
#ui-datepicker-div {
    padding: 1rem !important;
}

/* 曜日の文字色とサイズ */
.ui-datepicker-calendar th span {
    color: #ccc !important;
    font-size: 1.2rem !important;
}

/* 日付セルのスタイル */
.ui-state-default {
    background: #fff !important;
    color: #555 !important;
    font-size: 1.4rem !important;
}

/* ヘッダー部分 */
.ui-widget-header {
    background: #fff !important;
    color: #555 !important;
    font-weight: bold;
}

/* 並び替え中のプレースホルダ */
.sortable-placeholder {
    border: 2px dashed #bbb;
    background: #f8f9fa;
    height: 100px;
    margin-bottom: 1rem;
}

/* ハンドルの見た目 */
.sortdrager {
    position: relative;
    padding-left: 36px;
    cursor: grab;
}

.sortdrager:active {
    cursor: grabbing;
}

.sort-handle {
    position: absolute;
    left: 8px;
    top: 8px;
    cursor: grab;
    user-select: none;
    font-size: 20px;
    line-height: 1;
}

/* 画像サイズ調整 */
.nav-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: 0.2s;
}

.icon-nav a:hover .nav-icon {
    transform: scale(1.15);
}
