/* =========================================
   mylist.css - レイアウトはVODのCSSに任せる
   ========================================= */

/* 大枠の左右余白はゼロにする（子要素で個別に制御するため） */
#mylist-view {
    padding: 100px 0 50px 0 !important;
    width: 100%;
    box-sizing: border-box;
    overflow: visible !important;
}

/* フィルターボタン（ヘッダー）に 2.5% の余白 */
.mylist-header { 
    margin-bottom: 30px; 
    padding: 0 2.5% !important;
}

/* ★作品グリッド本体に直接 2.5% の余白を強制 */
#mylist-grid {
    padding: 0 2.5% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

.mylist-filters { 
    display: flex; 
    gap: 12px; 
}

.mylist-filter-btn {
    background: transparent; 
    color: #aaa; 
    border: 1px solid #555;
    padding: 8px 20px; 
    border-radius: 20px; 
    cursor: pointer;
    font-weight: bold; 
    transition: all 0.2s; 
    font-size: 0.9rem;
}

.mylist-filter-btn.active { 
    background: white; 
    color: #141414; 
    border-color: white; 
}

.mylist-filter-btn:hover {
    border-color: white;
    color: white;
    background: rgba(255,255,255,0.1);
}

#mylist-empty { 
    text-align: center; 
    color: #888; 
    margin-top: 150px; 
}