/* 媒体詳細スタイル */
.media-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.media-detail-header h2 {
    font-size: 2rem;
    color: #333;
    font-weight: 700;
}

.media-filter select {
    padding: 0.75rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    min-width: 200px;
}

.media-filter select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.detail-table-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.detail-table {
    font-size: 0.9rem;
}

.detail-table th {
    font-size: 0.85rem;
    padding: 0.75rem;
}

.detail-table td {
    padding: 0.75rem;
}

/* テーブル行のフィルタリング */
.detail-table tbody tr {
    transition: opacity 0.3s ease;
}

.detail-table tbody tr.hidden {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .media-detail-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .media-filter select {
        min-width: auto;
        width: 100%;
    }
    
    .detail-table {
        min-width: 1000px;
    }
}